xref: /freebsd/lib/libc/string/string.3 (revision cbb3ec25236ba72f91cbdf23f8b78b9d1af0cedf)
1.\" Copyright (c) 1990, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" Chris Torek.
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\" 3. Neither the name of the University nor the names of its contributors
15.\"    may be used to endorse or promote products derived from this software
16.\"    without specific prior written permission.
17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28.\" SUCH DAMAGE.
29.\"
30.\"     @(#)string.3	8.2 (Berkeley) 12/11/93
31.\"
32.Dd December 11, 1993
33.Dt STRING 3
34.Os
35.Sh NAME
36.Nm stpcpy ,
37.Nm strcat ,
38.Nm strncat ,
39.Nm strchr ,
40.Nm strrchr ,
41.Nm strcmp ,
42.Nm strncmp ,
43.Nm strcasecmp ,
44.Nm strncasecmp ,
45.Nm strcpy ,
46.Nm strncpy ,
47.Nm strerror ,
48.Nm strlen ,
49.Nm strpbrk ,
50.Nm strsep ,
51.Nm strspn ,
52.Nm strcspn ,
53.Nm strstr ,
54.Nm strtok ,
55.Nm index ,
56.Nm rindex
57.Nd string specific functions
58.Sh LIBRARY
59.Lb libc
60.Sh SYNOPSIS
61.In string.h
62.Ft char *
63.Fn stpcpy "char *dst" "const char *src"
64.Ft char *
65.Fn strcat "char *s" "const char * append"
66.Ft char *
67.Fn strncat "char *s" "const char *append" "size_t count"
68.Ft char *
69.Fn strchr "const char *s" "int c"
70.Ft char *
71.Fn strrchr "const char *s" "int c"
72.Ft int
73.Fn strcmp "const char *s1" "const char *s2"
74.Ft int
75.Fn strncmp "const char *s1" "const char *s2" "size_t count"
76.Ft int
77.Fn strcasecmp "const char *s1" "const char *s2"
78.Ft int
79.Fn strncasecmp "const char *s1" "const char *s2" "size_t count"
80.Ft char *
81.Fn strcpy "char *dst" "const char *src"
82.Ft char *
83.Fn strncpy "char *dst" "const char *src" "size_t count"
84.Ft char *
85.Fn strerror "int errno"
86.Ft size_t
87.Fn strlen "const char *s"
88.Ft char *
89.Fn strpbrk "const char *s" "const char *charset"
90.Ft char *
91.Fn strsep "char **stringp" "const char *delim"
92.Ft size_t
93.Fn strspn "const char *s" "const char *charset"
94.Ft size_t
95.Fn strcspn "const char *s" "const char *charset"
96.Ft char *
97.Fn strstr "const char *big" "const char *little"
98.Ft char *
99.Fn strtok "char *s" "const char *delim"
100.Ft char *
101.Fn index "const char *s" "int c"
102.Ft char *
103.Fn rindex "const char *s" "int c"
104.Sh DESCRIPTION
105The string
106functions manipulate strings terminated by a
107null byte.
108.Pp
109See the specific manual pages for more information.
110For manipulating variable length generic objects as byte
111strings (without the null byte check), see
112.Xr bstring 3 .
113.Pp
114Except as noted in their specific manual pages,
115the string functions do not test the destination
116for size limitations.
117.Sh SEE ALSO
118.Xr bstring 3 ,
119.Xr index 3 ,
120.Xr rindex 3 ,
121.Xr stpcpy 3 ,
122.Xr strcasecmp 3 ,
123.Xr strcat 3 ,
124.Xr strchr 3 ,
125.Xr strcmp 3 ,
126.Xr strcpy 3 ,
127.Xr strcspn 3 ,
128.Xr strerror 3 ,
129.Xr strlen 3 ,
130.Xr strpbrk 3 ,
131.Xr strrchr 3 ,
132.Xr strsep 3 ,
133.Xr strspn 3 ,
134.Xr strstr 3 ,
135.Xr strtok 3
136.Sh STANDARDS
137The
138.Fn strcat ,
139.Fn strncat ,
140.Fn strchr ,
141.Fn strrchr ,
142.Fn strcmp ,
143.Fn strncmp ,
144.Fn strcpy ,
145.Fn strncpy ,
146.Fn strerror ,
147.Fn strlen ,
148.Fn strpbrk ,
149.Fn strspn ,
150.Fn strcspn ,
151.Fn strstr ,
152and
153.Fn strtok
154functions
155conform to
156.St -isoC .
157