Correct BSD License clause numbering from 1-2-4 to 1-2-3.
[dragonfly.git] / lib / libc / string / wmemchr.3
1 .\"     $NetBSD: wmemchr.3,v 1.4 2001/01/02 11:26:23 itojun Exp $
2 .\"
3 .\" Copyright (c) 1990, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to Berkeley by
7 .\" Chris Torek and the American National Standards Committee X3,
8 .\" on Information Processing Systems.
9 .\"
10 .\" Redistribution and use in source and binary forms, with or without
11 .\" modification, are permitted provided that the following conditions
12 .\" are met:
13 .\" 1. Redistributions of source code must retain the above copyright
14 .\"    notice, this list of conditions and the following disclaimer.
15 .\" 2. Redistributions in binary form must reproduce the above copyright
16 .\"    notice, this list of conditions and the following disclaimer in the
17 .\"    documentation and/or other materials provided with the distribution.
18 .\" 3. Neither the name of the University nor the names of its contributors
19 .\"    may be used to endorse or promote products derived from this software
20 .\"    without specific prior written permission.
21 .\"
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" SUCH DAMAGE.
33 .\"
34 .\"     from: @(#)strcpy.3      8.1 (Berkeley) 6/4/93
35 .\"
36 .\" $FreeBSD: src/lib/libc/string/wmemchr.3,v 1.8 2007/01/09 00:28:12 imp Exp $
37 .\" $DragonFly: src/lib/libc/string/wmemchr.3,v 1.2 2003/06/17 04:26:47 dillon Exp $
38 .\"
39 .Dd November 21, 2011
40 .Dt WMEMCHR 3
41 .Os
42 .Sh NAME
43 .Nm wmemchr ,
44 .Nm wmemcmp ,
45 .Nm wmemcpy ,
46 .Nm wmemmove ,
47 .Nm wmemset ,
48 .Nm wcscasecmp ,
49 .Nm wcscat ,
50 .Nm wcschr ,
51 .Nm wcscmp ,
52 .Nm wcscpy ,
53 .Nm wcscspn ,
54 .Nm wcsdup ,
55 .Nm wcslcat ,
56 .Nm wcslcpy ,
57 .Nm wcslen ,
58 .Nm wcsncasecmp ,
59 .Nm wcsncat ,
60 .Nm wcsncmp ,
61 .Nm wcsncpy ,
62 .Nm wcsnlen ,
63 .Nm wcspbrk ,
64 .Nm wcsrchr ,
65 .Nm wcsspn ,
66 .Nm wcsstr
67 .Nd wide character string manipulation operations
68 .Sh LIBRARY
69 .Lb libc
70 .Sh SYNOPSIS
71 .In wchar.h
72 .Ft wchar_t *
73 .Fn wmemchr "const wchar_t *s" "wchar_t c" "size_t n"
74 .Ft int
75 .Fn wmemcmp "const wchar_t *s1" "const wchar_t *s2" "size_t n"
76 .Ft wchar_t *
77 .Fn wmemcpy "wchar_t * restrict s1" "const wchar_t * restrict s2" "size_t n"
78 .Ft wchar_t *
79 .Fn wmemmove "wchar_t *s1" "const wchar_t *s2" "size_t n"
80 .Ft wchar_t *
81 .Fn wmemset "wchar_t *s" "wchar_t c" "size_t n"
82 .Ft int
83 .Fn wcscasecmp "const wchar_t *s1" "const wchar_t *s2"
84 .Ft wchar_t *
85 .Fn wcscat "wchar_t * restrict s1" "const wchar_t * restrict s2"
86 .Ft wchar_t *
87 .Fn wcschr "const wchar_t *s" "wchar_t c"
88 .Ft int
89 .Fn wcscmp "const wchar_t *s1" "const wchar_t *s2"
90 .Ft wchar_t *
91 .Fn wcscpy "wchar_t * restrict s1" "const wchar_t * restrict s2"
92 .Ft size_t
93 .Fn wcscspn "const wchar_t *s1" "const wchar_t *s2"
94 .Ft wchar_t *
95 .Fn wcsdup "const wchar_t *s"
96 .Ft size_t
97 .Fn wcslcat "wchar_t *s1" "const wchar_t *s2" "size_t n"
98 .Ft size_t
99 .Fn wcslcpy "wchar_t *s1" "const wchar_t *s2" "size_t n"
100 .Ft size_t
101 .Fn wcslen "const wchar_t *s"
102 .Ft int
103 .Fn wcsncasecmp "const wchar_t *s1" "const wchar_t *s2" "size_t n"
104 .Ft wchar_t *
105 .Fn wcsncat "wchar_t * restrict s1" "const wchar_t * restrict s2" "size_t n"
106 .Ft int
107 .Fn wcsncmp "const wchar_t *s1" "const wchar_t * s2" "size_t n"
108 .Ft wchar_t *
109 .Fn wcsncpy "wchar_t * restrict s1" "const wchar_t * restrict s2" "size_t n"
110 .Ft size_t
111 .Fn wcsnlen "const wchar_t *s" "size_t maxlen"
112 .Ft wchar_t *
113 .Fn wcspbrk "const wchar_t *s1" "const wchar_t *s2"
114 .Ft wchar_t *
115 .Fn wcsrchr "const wchar_t *s" "wchar_t c"
116 .Ft size_t
117 .Fn wcsspn "const wchar_t *s1" "const wchar_t *s2"
118 .Ft wchar_t *
119 .Fn wcsstr "const wchar_t * restrict s1" "const wchar_t * restrict s2"
120 .Sh DESCRIPTION
121 The functions implement string manipulation operations over wide character
122 strings.
123 For a detailed description, refer to documents for the respective single-byte
124 counterpart, such as
125 .Xr memchr 3 .
126 .Sh SEE ALSO
127 .Xr memchr 3 ,
128 .Xr memcmp 3 ,
129 .Xr memcpy 3 ,
130 .Xr memmove 3 ,
131 .Xr memset 3 ,
132 .Xr stpcpy 3 ,
133 .Xr strcasecmp 3 ,
134 .Xr strcat 3 ,
135 .Xr strchr 3 ,
136 .Xr strcmp 3 ,
137 .Xr strcpy 3 ,
138 .Xr strcspn 3 ,
139 .Xr strdup 3 ,
140 .Xr strlcat 3 ,
141 .Xr strlcpy 3 ,
142 .Xr strlen 3 ,
143 .Xr strncat 3 ,
144 .Xr strncmp 3 ,
145 .Xr strncpy 3 ,
146 .Xr strnlen 3 ,
147 .Xr strpbrk 3 ,
148 .Xr strrchr 3 ,
149 .Xr strspn 3 ,
150 .Xr strstr 3
151 .Sh STANDARDS
152 These functions conform to
153 .St -isoC-99 ,
154 with the exception of
155 .Fn wcscasecmp ,
156 .Fn wcsdup ,
157 .Fn wcsncasecmp ,
158 and
159 .Fn wcsnlen ,
160 which conform to
161 .St -p1003.1-2008 ;
162 and
163 .Fn wcslcat
164 and
165 .Fn wcslcpy ,
166 which are extensions.