Split a C string into an argc,argv array in place; the input string is modified. Returns argc, and places results in argv, up to maxargc elements. The final argv receives the rest of the input string from maxargc on, even if it contains additional splitchars. The correct idiom for use is to make a copy of your string, like this: char *copy = strcpy((char*)alloca(the_string.length()+1),the_string.c
source not stored for this graph (policy: none)