Lines Matching full:string
3 * Optimized string functions
16 #include <linux/string.h>
21 * Helper functions to find the end of a string
52 * strlen - Find the length of a string
53 * @s: The string to be sized
66 * strnlen - Find the length of a length-limited string
67 * @s: The string to be sized
81 * strcpy - Copy a %NUL terminated string
82 * @dest: Where to copy the string to
83 * @src: Where to copy the string from
105 * strncpy - Copy a length-limited, %NUL-terminated string
106 * @dest: Where to copy the string to
107 * @src: Where to copy the string from
125 * strcat - Append one %NUL-terminated string to another
126 * @dest: The string to be appended to
127 * @src: The string to append to it
152 * strlcat - Append a length-limited, %NUL-terminated string to another
153 * @dest: The string to be appended to
154 * @src: The string to append to it
178 * strncat - Append a length-limited, %NUL-terminated string to another
179 * @dest: The string to be appended to
180 * @src: The string to append to it
203 * @s1: One string
204 * @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