Lines Matching full:string
3 * Optimized string functions
13 #include <linux/string.h>
17 * Helper functions to find the end of a string
48 * strlen - Find the length of a string
49 * @s: The string to be sized
62 * strnlen - Find the length of a length-limited string
63 * @s: The string to be sized
77 * strcpy - Copy a %NUL terminated string
78 * @dest: Where to copy the string to
79 * @src: Where to copy the string from
101 * strlcpy - Copy a %NUL terminated string into a sized buffer
102 * @dest: Where to copy the string to
103 * @src: Where to copy the string from
107 * NUL-terminated string that fits in the buffer (unless,
127 * strncpy - Copy a length-limited, %NUL-terminated string
128 * @dest: Where to copy the string to
129 * @src: Where to copy the string from
147 * strcat - Append one %NUL-terminated string to another
148 * @dest: The string to be appended to
149 * @src: The string to append to it
174 * strlcat - Append a length-limited, %NUL-terminated string to another
175 * @dest: The string to be appended to
176 * @src: The string to append to it
200 * strncat - Append a length-limited, %NUL-terminated string to another
201 * @dest: The string to be appended to
202 * @src: The string to append to it
225 * @s1: One string
226 * @s2: Another string
255 * strrchr - Find the last occurrence of a character in a string
256 * @s: The string to be searched
292 * strstr - Find the first substring in a %NUL terminated string
293 * @s1: The string to be searched
294 * @s2: The string to search for