2 @chapter Strings and Memory (@file
{string.h
})
4 This chapter describes string-handling functions and functions for
5 managing areas of memory. The corresponding declarations are in
9 * bcmp:: Compare two memory areas
10 * bcopy:: Copy memory regions
11 * bzero:: Initialize memory to zero
12 * index:: Search for character in string
13 * memccpy:: Copy memory regions up to end-token
14 * memchr:: Find character in memory
15 * memcmp:: Compare two memory areas
16 * memcpy:: Copy memory regions
17 * memmove:: Move possibly overlapping memory
18 * mempcpy:: Copy memory regions and locate end
19 * memset:: Set an area of memory
20 * rindex:: Reverse search for character in string
21 * strcasecmp:: Compare strings ignoring case
22 * strcat:: Concatenate strings
23 * strchr:: Search for character in string
24 * strcmp:: Character string compare
25 * strcoll:: Locale specific character string compare
26 * strcpy:: Copy string
27 * strcspn:: Count chars not in string
28 * strerror:: Convert error number to string
29 * strlen:: Character string length
30 * strlwr:: Convert string to lower case
31 * strncasecmp:: Compare strings ignoring case
32 * strncat:: Concatenate strings
33 * strncmp:: Character string compare
34 * strncpy:: Counted copy string
35 * strpbrk:: Find chars in string
36 * strrchr:: Reverse search for character in string
37 * strspn:: Find initial match
38 * strstr:: Find string segment
39 * strtok:: Get next token from a string
40 * strupr:: Convert string to upper case
41 * strxfrm:: Transform string
42 * swab:: Swap adjacent bytes
46 @include string/bcmp.def
49 @include string/bcopy.def
52 @include string/bzero.def
55 @include string/index.def
58 @include string/memccpy.def
61 @include string/memchr.def
64 @include string/memcmp.def
67 @include string/memcpy.def
70 @include string/memmove.def
73 @include string/mempcpy.def
76 @include string/memset.def
79 @include string/rindex.def
82 @include string/strcasecmp.def
85 @include string/strcat.def
88 @include string/strchr.def
91 @include string/strcmp.def
94 @include string/strcoll.def
97 @include string/strcpy.def
100 @include string/strcspn.def
103 @include string/strerror.def
106 @include string/strlen.def
109 @include string/strlwr.def
112 @include string/strncasecmp.def
115 @include string/strncat.def
118 @include string/strncmp.def
121 @include string/strncpy.def
124 @include string/strpbrk.def
127 @include string/strrchr.def
130 @include string/strspn.def
133 @include string/strstr.def
136 @include string/strtok.def
139 @include string/strupr.def
142 @include string/strxfrm.def
145 @include string/swab.def