Lines Matching full:nul
165 * strncpy - Copy a string to memory with non-guaranteed NUL padding
168 * @q: pointer to NUL-terminated source string to copy
172 * and @p will NOT be NUL-terminated
174 * If strlen(@q) < @size, following the copy of @q, trailing NUL bytes
186 * | NUL-terminated | strscpy_pad() | strscpy() |
188 * | not NUL-terminated | strtomem_pad() | strtomem() |
210 * strnlen - Return bounded count of characters in a NUL-terminated string
212 * @p: pointer to NUL-terminated string to count.
215 * Returns number of characters in @p (NOT including the final NUL), or
216 * @maxlen, if no NUL has been found up to there.
245 * strlen - Return count of characters in a NUL-terminated string
247 * @p: pointer to NUL-terminated string to count.
254 * Returns number of characters in @p (NOT including the final NUL).
337 * @p: pointer to %NUL-terminated string to append to
338 * @q: pointer to %NUL-terminated string to append from
341 * Appends %NUL-terminated string @q after the %NUL-terminated
344 * %NUL-terminated only if a %NUL already existed within
400 * @p: pointer to NUL-terminated string to append to
401 * @q: pointer to NUL-terminated source string to append from
426 * @p: pointer to NUL-terminated string to append to
431 * NUL byte) after the NUL-terminated string at @p. @p will be
432 * NUL-terminated.
761 * @q: pointer to NUL-terminated source string to copy