Go to the source code of this file.
#define TOLOWER |
( |
|
x | ) |
((x) | 0x20) |
simple_strtoull - convert a string to an unsigned long long : The start of the string : A pointer to the end of the parsed string will be placed here : The number base to use
Definition at line 90 of file string.c.
strcmp - Compare two strings : One string : Another string
returns 0 if and are equal, < 0 if is less than > 0 if is greater than
Definition at line 17 of file string.c.
strlen - Find the length of a string : The string to be sized
Definition at line 119 of file string.c.
strnlen - Find the length of a length-limited string : The string to be sized
: The maximum number of bytes to search
returns the minimum of the length of and
Definition at line 49 of file string.c.
strstr - Find the first substring in a NUL terminated string : The string to be searched : The string to search for
Definition at line 133 of file string.c.