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