Searched refs:stringp (Results 1 - 2 of 2) sorted by relevance

/xnu-2782.1.97/libsyscall/wrappers/string/
H A Dstrsep.c33 * Get next token from string *stringp, where tokens are possibly-empty
36 * Writes NULs into the string at *stringp to end tokens.
38 * On return, *stringp points past the last NUL written (if there might
41 * If *stringp is NULL, strsep returns NULL.
45 strsep(char **stringp, const char *delim) argument
52 if ((s = *stringp) == NULL)
63 *stringp = s;
/xnu-2782.1.97/bsd/libkern/
H A Dstrsep.c40 * Get next token from string *stringp, where tokens are possibly-empty
43 * Writes NULs into the string at *stringp to end tokens.
45 * On return, *stringp points past the last NUL written (if there might
48 * If *stringp is NULL, strsep returns NULL.
51 strsep(stringp, delim)
52 char **stringp;
60 if ((s = *stringp) == NULL)
71 *stringp = s;

Completed in 20 milliseconds