Lines Matching full:string
3 * Optimized string functions
13 #include <linux/string.h>
17 * Helper functions to find the end of a string
41 * strlen - Find the length of a string
42 * @s: The string to be sized
55 * strnlen - Find the length of a length-limited string
56 * @s: The string to be sized
70 * strcpy - Copy a %NUL terminated string
71 * @dest: Where to copy the string to
72 * @src: Where to copy the string from
92 * strlcpy - Copy a %NUL terminated string into a sized buffer
93 * @dest: Where to copy the string to
94 * @src: Where to copy the string from
98 * NUL-terminated string that fits in the buffer (unless,
118 * strncpy - Copy a length-limited, %NUL-terminated string
119 * @dest: Where to copy the string to
120 * @src: Where to copy the string from
138 * strcat - Append one %NUL-terminated string to another
139 * @dest: The string to be appended to
140 * @src: The string to append to it
163 * strlcat - Append a length-limited, %NUL-terminated string to another
164 * @dest: The string to be appended to
165 * @src: The string to append to it
189 * strncat - Append a length-limited, %NUL-terminated string to another
190 * @dest: The string to be appended to
191 * @src: The string to append to it
214 * @s1: One string
215 * @s2: Another string
242 * strrchr - Find the last occurrence of a character in a string
243 * @s: The string to be searched
279 * strstr - Find the first substring in a %NUL terminated string
280 * @s1: The string to be searched
281 * @s2: The string to search for