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
53 * strnlen - Find the length of a length-limited string
54 * @s: The string to be sized
66 * strcpy - Copy a %NUL terminated string
67 * @dest: Where to copy the string to
68 * @src: Where to copy the string from
86 * strlcpy - Copy a %NUL terminated string into a sized buffer
87 * @dest: Where to copy the string to
88 * @src: Where to copy the string from
92 * NUL-terminated string that fits in the buffer (unless,
110 * strncpy - Copy a length-limited, %NUL-terminated string
111 * @dest: Where to copy the string to
112 * @src: Where to copy the string from
128 * strcat - Append one %NUL-terminated string to another
129 * @dest: The string to be appended to
130 * @src: The string to append to it
151 * strlcat - Append a length-limited, %NUL-terminated string to another
152 * @dest: The string to be appended to
153 * @src: The string to append to it
175 * strncat - Append a length-limited, %NUL-terminated string to another
176 * @dest: The string to be appended to
177 * @src: The string to append to it
198 * @s1: One string
199 * @s2: Another string
224 * strrchr - Find the last occurrence of a character in a string
225 * @s: The string to be searched
260 * strstr - Find the first substring in a %NUL terminated string
261 * @s1: The string to be searched
262 * @s2: The string to search for