Home
last modified time | relevance | path

Searched refs:stringp (Results 1 – 3 of 3) sorted by relevance

/busybox-1.35.0/libbb/
Dplatform.c133 char* FAST_FUNC strsep(char **stringp, const char *delim) in strsep() argument
135 char *start = *stringp; in strsep()
146 *stringp = NULL; in strsep()
152 *stringp = ptr + 1; in strsep()
/busybox-1.35.0/modutils/
Dmodprobe.c343 static char *strsep_quotes(char **stringp) in strsep_quotes() argument
345 char *s, *start = *stringp; in strsep_quotes()
363 *stringp = s + 1; in strsep_quotes()
365 *stringp = NULL; in strsep_quotes()
/busybox-1.35.0/include/
Dplatform.h615 extern char *strsep(char **stringp, const char *delim) FAST_FUNC;