Re: Help! Problem with string manipulation and using tokens??
The first two errors mean you have to declare the variables in main() before you can use them.
The third error means your function declaration/definition should be:
int tokenize(char *token, int max_tokens, char *str);
|