Searched refs:seperators (Results 1 – 3 of 3) sorted by relevance
416 strsplit(char *string, const char *seperators) in strsplit() argument422 if ((string == NULL) || (seperators == NULL)) in strsplit()426 for (list[length] = strtok(string, seperators); in strsplit()428 list[length] = strtok(NULL, seperators)) in strsplit()
41 extern char **strsplit(char *string, const char *seperators);
42 strsplit(char *string, char *seperators) in strsplit() argument48 for (element = strtok_r(string, seperators, &where); element != NULL; in strsplit()49 element = strtok_r(NULL, seperators, &where)) in strsplit()