Lines Matching full:string
3 * Optimized string functions
16 #include <linux/string.h>
20 * Helper functions to find the end of a string
51 * strlen - Find the length of a string
52 * @s: The string to be sized
65 * strnlen - Find the length of a length-limited string
66 * @s: The string to be sized
80 * strcpy - Copy a %NUL terminated string
81 * @dest: Where to copy the string to
82 * @src: Where to copy the string from
104 * strncpy - Copy a length-limited, %NUL-terminated string
105 * @dest: Where to copy the string to
106 * @src: Where to copy the string from
124 * strcat - Append one %NUL-terminated string to another
125 * @dest: The string to be appended to
126 * @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
177 * strncat - Append a length-limited, %NUL-terminated string to another
178 * @dest: The string to be appended to
179 * @src: The string to append to it
202 * @s1: One string
203 * @s2: Another string
250 * strstr - Find the first substring in a %NUL terminated string
251 * @s1: The string to be searched
252 * @s2: The string to search for