Lines Matching full:nul
84 * strcpy - Copy a %NUL terminated string
107 * The result is not %NUL-terminated if the source exceeds
111 * count, the remainder of @dest will be padded with %NUL.
137 * NUL-terminated string that fits in the buffer (unless,
164 * buffer is always NUL terminated, unless it's zero-sized.
177 * * The number of characters copied (not including the trailing %NUL)
232 /* Hit buffer length without finding a NUL; force NUL-termination. */ in strscpy()
249 * buffer is always %NUL terminated, unless it's zero-sized.
258 * * The number of characters copied (not including the trailing %NUL)
277 * of dest, including src's %NUL-terminator. May overrun dest.
284 * to the new %NUL-terminating character in @dest. (For strcpy, the return
301 * strcat - Append one %NUL-terminated string to another
430 * Note that the %NUL-terminator is considered part of the string, and can
503 * Note that the %NUL-terminator is considered part of the string, and can
537 * Note that the first trailing whitespace is replaced with a %NUL-terminator
699 * NUL and newline-then-NUL as equivalent string terminations. It's
996 * strstr - Find the first substring in a %NUL terminated string
1139 * Returns pointer to the nul byte at the end of @s.