Lines Matching full:string
3 * linux/lib/string.c
11 * found in <asm-xx/string.h>), or get overloaded by FORTIFY_SOURCE.
19 #include <linux/string.h>
34 * strncasecmp - Case insensitive, length-limited string comparison
35 * @s1: One string
36 * @s2: The other string
80 * strcpy - Copy a %NUL terminated string
81 * @dest: Where to copy the string to
82 * @src: Where to copy the string from
97 * strncpy - Copy a length-limited, C-string
98 * @dest: Where to copy the string to
99 * @src: Where to copy the string from
126 * strlcpy - Copy a C-string into a sized buffer
127 * @dest: Where to copy the string to
128 * @src: Where to copy the string from
132 * NUL-terminated string that fits in the buffer (unless,
152 * strscpy - Copy a C-string into a sized buffer
153 * @dest: Where to copy the string to
154 * @src: Where to copy the string from
157 * Copy the string, or as much of it as fits, into the dest buffer. The
158 * behavior is undefined if the string buffers overlap. The destination
162 * from the src string beyond the specified "count" bytes, and since
164 * In addition, the implementation is robust to the string changing out
167 * Preferred to strncpy() since it always returns a valid string, and
245 * stpcpy - copy a string from src to dest returning a pointer to the new end
247 * @dest: pointer to end of string being copied into. Must be large enough
249 * @src: pointer to the beginning of string being copied from. Must not overlap
270 * strcat - Append one %NUL-terminated string to another
271 * @dest: The string to be appended to
272 * @src: The string to append to it
289 * strncat - Append a length-limited, C-string to another
290 * @dest: The string to be appended to
291 * @src: The string to append to it
318 * strlcat - Append a length-limited, C-string to another
319 * @dest: The string to be appended to
320 * @src: The string to append to it
346 * @cs: One string
347 * @ct: Another string
369 * @cs: One string
370 * @ct: Another string
393 * strchr - Find the first occurrence of a character in a string
394 * @s: The string to be searched
397 * Note that the %NUL-terminator is considered part of the string, and can
412 * strchrnul - Find and return a character in a string, or end of string
413 * @s: The string to be searched
429 * strnchrnul - Find and return a character in a length limited string,
430 * or end of string
431 * @s: The string to be searched
436 * then return a pointer to the last character of the string.
447 * strrchr - Find the last occurrence of a character in a string
448 * @s: The string to be searched
465 * strnchr - Find a character in a length limited string
466 * @s: The string to be searched
470 * Note that the %NUL-terminator is considered part of the string, and can
488 * strlen - Find the length of a string
489 * @s: The string to be sized
504 * strnlen - Find the length of a length-limited string
505 * @s: The string to be sized
522 * @s: The string to be searched
523 * @accept: The string to search for
541 * @s: The string to be searched
542 * @reject: The string to avoid
560 * @cs: The string to be searched
580 * strsep - Split a string into tokens
581 * @s: The string to be searched
829 * strstr - Find the first substring in a %NUL terminated string
830 * @s1: The string to be searched
831 * @s2: The string to search for
854 * strnstr - Find the first substring in a length-limited string
855 * @s1: The string to be searched
856 * @s2: The string to search for