Lines Matching refs:end
276 * stpcpy - copy a string from src to dest returning a pointer to the new end
278 * @dest: pointer to end of string being copied into. Must be large enough
445 * strchrnul - Find and return a character in a string, or end of string
450 * return a pointer to the null byte at the end of s.
463 * or end of string
544 char *end;
550 end = s + size - 1;
551 while (end >= s && isspace(*end))
552 end--;
553 *(end + 1) = '\0';
679 char *end;
684 end = strpbrk(sbegin, ct);
685 if (end)
686 *end++ = '\0';
687 *s = end;
1139 * Returns pointer to the nul byte at the end of @s.