char *strtok( char *restrict str, const char *restrict delim ); If str != NULL, the call is treated as the first call to strtok for this particular string. The function searches for the first character which is not contained in delim. If str == NULL, the call is treated as a subsequent calls to strtok: the function continues from where it left in previous invocation. http://en.cppreference.com/w/c/string/byte/strtok |