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

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/
H A Dstrsep.c44 * Get next token from string *stringp, where tokens are possibly-empty
47 * Writes NULs into the string at *stringp to end tokens.
49 * On return, *stringp points past the last NUL written (if there might
52 * If *stringp is NULL, strsep returns NULL.
56 register char **stringp,
65 if ((s = *stringp) == NULL)
76 *stringp = s;
55 strsep( register char **stringp, register const char *delim ) argument

Completed in 99 milliseconds