Lines Matching full:endp
147 - char *endp = NULL;
149 + char *endp;
154 - endp = strchr(str, sep);
157 + endp = strpbrk(str, accept);
158 if (!endp) { /* act like strchrnul */
160 - endp = str + len;
162 + endp = str + opt->len;
164 - len = endp - str;
165 + opt->len = endp - str;
168 - if (endp == str)
174 + opt->delim = *endp;
175 if (*endp == 0) {
177 - *next = endp;
178 + opt->next = endp;
180 - *next = endp + 1;
181 + opt->next = endp + 1;