seps 50 common/libc/string/strtok_r.c strtok_r(char *string, const char *seps, char **context)
seps 67 common/libc/string/strtok_r.c while (*head && strchr(seps, *head)) {
seps 80 common/libc/string/strtok_r.c while (*tail && !strchr(seps, *tail)) {
seps 143 kern/include/lib.h char *strtok_r(char *buf, const char *seps, char **context);
seps 154 user/lib/libc/stdlib/random.c static const int seps[MAX_TYPES] = { SEP_0, SEP_1, SEP_2, SEP_3, SEP_4 };
seps 380 user/lib/libc/stdlib/random.c rand_sep = seps[type];
seps 35 user/lib/libc/string/strtok.c strtok(char *str, const char *seps)
seps 37 user/lib/libc/string/strtok.c return strtok_r(str, seps, &__strtok_context);