Home | History | Annotate | Download | only in lib

Lines Matching refs:end

31 Curl_strtok_r(char *ptr, const char *sep, char **end)
35 ptr = *end;
45 /* set the end pointer to the first byte after the start */
46 *end = start + 1;
50 while(**end && !strchr(sep, **end))
51 ++*end;
53 if(**end) {
54 /* the end is not a null byte */
55 **end = '\0'; /* zero terminate it! */
56 ++*end; /* advance the last pointer to beyond the null byte */