Searched refs:optionp (Results 1 – 2 of 2) sorted by relevance
/glibc-2.36/stdlib/ |
D | getsubopt.c | 39 getsubopt (char **optionp, char *const *tokens, char **valuep) in getsubopt() argument 44 if (**optionp == '\0') in getsubopt() 48 endp = __strchrnul (*optionp, ','); in getsubopt() 51 vstart = memchr (*optionp, '=', endp - *optionp); in getsubopt() 58 if (strncmp (*optionp, tokens[cnt], vstart - *optionp) == 0 in getsubopt() 59 && tokens[cnt][vstart - *optionp] == '\0') in getsubopt() 66 *optionp = endp; in getsubopt() 72 *valuep = *optionp; in getsubopt() 76 *optionp = endp; in getsubopt()
|
/glibc-2.36/manual/ |
D | startup.texi | 222 @deftypefun int getsubopt (char **@var{optionp}, char *const *@var{tokens}, char **@var{valuep}) 230 The @var{optionp} parameter must be a pointer to a variable containing
|