I have a string that contains with spaces, such as "print 2" or "print 3 test". I'm trying to remove the first argument - in these examples, the print.
I tried strtok():
char *test;
test = strtok(COMMAND, " ");
printf("%s\n", test);
However printing test will segfault. I tried making a function, and it works fine from main() but when called from the function I need it in, it also segfaults.
char* split(char S[], int N) {
printf("Running split() on %s\n", S);
int Spaces = 1;
int i = 0;
for (i; i<strlen(S) && Spaces <=N; i++) {
if (S[i] == ' ') {
Spaces++;
}
}
printf("split: %s\n", &S[i]);
//return "0";
return &S[i];
}
I'm guessing it's some kind of pointer problem. Command is being passed into the print function like so:
Print(File, Lines, COMMAND);
Print; so can we see how its definition begins? (In particular, I'm wondering exactly how you declareCOMMAND, which seems to exist in two versions, one inPrintand one in whatever callsPrint.) And can we see how theCOMMANDpassed into thePrintfunction gets its value? Everything you've described is consistent with that variable having a wrong value -- e.g., a null pointer or a pointer to something other than a null-terminated string. – Gareth McCaughan Jul 9 '12 at 18:32