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 * strcat - Append one %NUL-terminated string to another
82 * @dest: The string to be appended to
83 * @src: The string to append to it
108 * strlcat - Append a length-limited, %NUL-terminated string to another
109 * @dest: The string to be appended to
110 * @src: The string to append to it
134 * strncat - Append a length-limited, %NUL-terminated string to another
135 * @dest: The string to be appended to
136 * @src: The string to append to it
156 * @s1: One string
157 * @s2: Another string
203 * strstr - Find the first substring in a %NUL terminated string
204 * @s1: The string to be searched
205 * @s2: The string to search for