Searched refs:delim (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/string/
H A Dstrsep.c36 * strings separated by characters from delim.
39 * delim need not remain constant from call to call.
46 strsep(char **stringp, const char *delim) argument
57 spanp = delim;
H A Dstrtok.c33 strtok(char *s, const char *delim) argument
37 return strtok_r(s, delim, &last);
42 strtok_r(char *s, const char *delim, char **last) argument
52 * Skip (span) leading delimiters (s += strspn(s, delim), sort of).
56 for (spanp = delim; (sc = *spanp++) != 0;) {
68 * Scan token (scan for delimiters: s += strcspn(s, delim), sort of).
69 * Note that delim must have one NUL; we stop if we see that, too.
73 spanp = delim;
/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcstok.c41 wcstok(wchar_t * __restrict s, const wchar_t * __restrict delim, argument
52 * Skip (span) leading delimiters (s += wcsspn(s, delim), sort of).
56 for (spanp = delim; (sc = *spanp++) != L'\0';) {
68 * Scan token (scan for delimiters: s += wcscspn(s, delim), sort of).
69 * Note that delim must have one NUL; we stop if we see that, too.
73 spanp = delim;
/bionic/libc/tzcode/
H A Dlocaltime.c761 getqzname(register const char *strp, const int delim) argument
765 while ((c = *strp) != '\0' && c != delim)

Completed in 74 milliseconds