Lines Matching defs:end
192 * stpcpy - copy a string from src to dest returning a pointer to the new end
194 * @dest: pointer to end of string being copied into. Must be large enough
339 * strchrnul - Find and return a character in a string, or end of string
344 * return a pointer to the null byte at the end of s.
357 * or end of string
509 char *end;
514 end = strpbrk(sbegin, ct);
515 if (end)
516 *end++ = '\0';
517 *s = end;