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

/barrelfish-master/lib/libc/string/
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(char **stringp, const char *delim) argument
58 if ((s = *stringp) == NULL)
69 *stringp = s;
/barrelfish-master/lib/libc/rpc/
H A Dgetnetconfig.c245 char *stringp; /* tmp string pointer */ local
301 stringp = (char *) malloc(MAXNETCONFIGLINE);
302 if (stringp == NULL)
317 if (fgets(stringp, MAXNETCONFIGLINE, nc_file) == NULL) {
318 free(stringp);
325 } while (*stringp == '#');
330 free(stringp);
335 free(stringp);
342 list->linep = stringp;
343 if (parse_ncp(stringp, lis
448 char *stringp; /* temporary string pointer */ local
561 parse_ncp(char *stringp, struct netconfig *ncp) argument
[all...]
/barrelfish-master/lib/libc/gen/
H A Dstrtofflags.c126 * success, 1 on failure. On failure, stringp is set to point
130 strtofflags(char **stringp, u_long *setp, u_long *clrp) argument
139 string = *stringp;
141 *stringp = p;

Completed in 44 milliseconds