Lines Matching refs:endp
41 char *endp, *vstart; in getsubopt() local
48 endp = __strchrnul (*optionp, ','); in getsubopt()
51 vstart = memchr (*optionp, '=', endp - *optionp); in getsubopt()
53 vstart = endp; in getsubopt()
62 *valuep = vstart != endp ? vstart + 1 : NULL; in getsubopt()
64 if (*endp != '\0') in getsubopt()
65 *endp++ = '\0'; in getsubopt()
66 *optionp = endp; in getsubopt()
74 if (*endp != '\0') in getsubopt()
75 *endp++ = '\0'; in getsubopt()
76 *optionp = endp; in getsubopt()