add opendir alias
[minix.git] / lib / libc / string / wcstok.3
bloba181afefd2aefec0381a232a69b8394a8dc6e530
1 .\" $NetBSD: wcstok.3,v 1.6 2010/12/16 17:42:28 wiz Exp $
2 .\"
3 .\" Copyright (c) 1998 Softweyr LLC.  All rights reserved.
4 .\"
5 .\" strtok_r, from Berkeley strtok
6 .\" Oct 13, 1998 by Wes Peters <wes@softweyr.com>
7 .\"
8 .\" Copyright (c) 1988, 1991, 1993
9 .\"     The Regents of the University of California.  All rights reserved.
10 .\"
11 .\" This code is derived from software contributed to Berkeley by
12 .\" the American National Standards Committee X3, on Information
13 .\" Processing Systems.
14 .\"
15 .\" Redistribution and use in source and binary forms, with or without
16 .\" modification, are permitted provided that the following conditions
17 .\" are met:
18 .\"
19 .\" 1. Redistributions of source code must retain the above copyright
20 .\"    notices, this list of conditions and the following disclaimer.
21 .\"
22 .\" 2. Redistributions in binary form must reproduce the above
23 .\"    copyright notices, this list of conditions and the following
24 .\"    disclaimer in the documentation and/or other materials provided
25 .\"    with the distribution.
26 .\"
27 .\" 3. All advertising materials mentioning features or use of this
28 .\"    software must display the following acknowledgement:
29 .\"
30 .\"     This product includes software developed by Softweyr LLC, the
31 .\"      University of California, Berkeley, and its contributors.
32 .\"
33 .\" 4. Neither the name of Softweyr LLC, the University nor the names
34 .\"    of its contributors may be used to endorse or promote products
35 .\"    derived from this software without specific prior written
36 .\"    permission.
37 .\"
38 .\" THIS SOFTWARE IS PROVIDED BY SOFTWEYR LLC, THE REGENTS AND
39 .\" CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
40 .\" INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
41 .\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
42 .\" DISCLAIMED.  IN NO EVENT SHALL SOFTWEYR LLC, THE REGENTS, OR
43 .\" CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 .\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
45 .\" LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
46 .\" USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
47 .\" ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
48 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
49 .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 .\" SUCH DAMAGE.
51 .\"
52 .\" Original version ID:
53 .\" FreeBSD: src/lib/libc/string/wcstok.3,v 1.4 2002/10/15 09:49:54 tjr Exp
54 .\"
55 .Dd October 3, 2002
56 .Dt WCSTOK 3
57 .Os
58 .Sh NAME
59 .Nm wcstok
60 .Nd split wide-character string into tokens
61 .Sh LIBRARY
62 .Lb libc
63 .Sh SYNOPSIS
64 .In wchar.h
65 .Ft wchar_t *
66 .Fn wcstok "wchar_t * restrict str" "const wchar_t * restrict sep" "wchar_t ** restrict last"
67 .Sh DESCRIPTION
68 The
69 .Fn wcstok
70 function
71 is used to isolate sequential tokens in a nul-terminated wide-character
72 string,
73 .Fa str .
74 These tokens are separated in the string by at least one of the
75 characters in
76 .Fa sep .
77 The first time that
78 .Fn wcstok
79 is called,
80 .Fa str
81 should be specified; subsequent calls, wishing to obtain further tokens
82 from the same string, should pass a null pointer instead.
83 The separator string,
84 .Fa sep ,
85 must be supplied each time, and may change between calls.
86 The context pointer
87 .Fa last
88 must be provided on each call.
89 .Pp
90 The
91 .Fn wcstok
92 function is the wide-character counterpart of the
93 .Fn strtok_r
94 function.
95 .Sh RETURN VALUES
96 The
97 .Fn wcstok
98 function
99 returns a pointer to the beginning of each subsequent token in the string,
100 after replacing the token itself with a nul wide character (L'\e0').
101 When no more tokens remain, a null pointer is returned.
102 .Sh EXAMPLES
103 The following code fragment splits a wide-character string on
104 .Tn ASCII
105 space, tab and newline characters and writes the tokens to
106 standard output:
107 .Bd -literal -offset indent
108 const wchar_t *seps = L" \et\en";
109 wchar_t *last, *tok, text[] = L" \enone\ettwo\et\etthree  \en";
111 for (tok = wcstok(text, seps, &last); tok != NULL;
112     tok = wcstok(NULL, seps, &last))
113         wprintf(L"%ls\en", tok);
115 .Sh SEE ALSO
116 .Xr strtok 3 ,
117 .Xr wcschr 3 ,
118 .Xr wcscspn 3 ,
119 .Xr wcspbrk 3 ,
120 .Xr wcsrchr 3 ,
121 .Xr wcsspn 3
122 .Sh STANDARDS
124 .Fn wcstok
125 function
126 conforms to
127 .St -isoC-99 .
129 Some early implementations of
130 .Fn wcstok
131 omit the context pointer argument,
132 .Fa last ,
133 and maintain state across calls in a static variable like
134 .Xr strtok 3
135 does.