String Manipulation

Table of Contents
/usr/src/RPM/BUILD/kernel-image-wks26-up-2.6.11-alt4/kernel-source-2.6.11/lib/string.c --  Document generation inconsistency
strnicmp --  Case insensitive, length-limited string comparison
strcpy --  Copy a NUL terminated string
strncpy --  Copy a length-limited, NUL-terminated string
strlcpy --  Copy a NUL terminated string into a sized buffer
strcat --  Append one NUL-terminated string to another
strncat --  Append a length-limited, NUL-terminated string to another
strlcat --  Append a length-limited, NUL-terminated string to another
strcmp --  Compare two strings
strncmp --  Compare two length-limited strings
strchr --  Find the first occurrence of a character in a string
strrchr --  Find the last occurrence of a character in a string
strnchr --  Find a character in a length limited string
strlen --  Find the length of a string
strnlen --  Find the length of a length-limited string
strspn --  Calculate the length of the initial substring of s which only
strcspn --  Calculate the length of the initial substring of s which does
strpbrk --  Find the first occurrence of a set of characters
strsep --  Split a string into tokens
memset --  Fill a region of memory with the given value
memcpy --  Copy one area of memory to another
memmove --  Copy one area of memory to another
memcmp --  Compare two areas of memory
memscan --  Find a character in an area of memory.
strstr --  Find the first substring in a NUL terminated string
memchr --  Find a character in an area of memory.