Check documentation
Status: Beta
Brought to you by:
matikm
I suggest a correction for the code on page 17 in the users guide.
"...
An example C++ program that invokes a Superx++ executable appears below:
..."
Please use std::string objects.
The statement "strcat(sXin, argv[i]);" can copy behind the buffer (see also "http://www.cs.virginia.edu/~evans/usenix01-abstract.html") if the input is longer than 29994 characters.
Is this suggestion applicable to your own code , too?
Logged In: YES
user_id=572001
If you would like to use plain C, consider the use of the functions "strncat" and "strlen".
http://en.wikipedia.org/wiki/C_programming_language