Lines Matching defs:end
33 Curl_strtok_r(char *ptr, const char *sep, char **end)
37 ptr = *end;
47 /* set the end pointer to the first byte after the start */
48 *end = start + 1;
52 while(**end && !strchr(sep, **end))
53 ++*end;
55 if(**end) {
56 /* the end is not a null byte */
57 **end = '\0'; /* null-terminate it! */
58 ++*end; /* advance the last pointer to beyond the null byte */