1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
|
'\" te
.\" Copyright (c) 1992, X/Open Company Limited All Rights Reserved Portions Copyright (c) 2002, Sun Microsystems, Inc. All Rights Reserved
.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
.\" http://www.opengroup.org/bookstore/.
.\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
.\" This notice shall appear on any product containing this material.
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
.TH wcstring 3C "14 Aug 2002" "SunOS 5.11" "Standard C Library Functions"
.SH NAME
wcstring, wcscat, wscat, wcsncat, wsncat, wcscmp, wscmp, wcsncmp, wsncmp,
wcscpy, wscpy, wcsncpy, wsncpy, wcslen, wslen, wcschr, wschr, wcsrchr, wsrchr,
windex, wrindex, wcspbrk, wspbrk, wcswcs, wcsspn, wsspn, wcscspn, wscspn,
wcstok, wstok \- wide-character string operations
.SH SYNOPSIS
.LP
.nf
#include <wchar.h>
\fBwchar_t *\fR\fBwcscat\fR(\fBwchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwcsncat\fR(\fBwchar_t *restrict\fR \fIws1\fR, \fBconst wchar_t *restrict\fR \fIws2\fR,
\fBsize_t\fR \fIn\fR);
.fi
.LP
.nf
\fBint\fR \fBwcscmp\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBint\fR \fBwcsncmp\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR, \fBsize_t\fR \fIn\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwcscpy\fR(\fBwchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwcsncpy\fR(\fBwchar_t *restrict\fR \fIws1\fR, \fBconst wchar_t *restrict\fR \fIws2\fR,
\fBsize_t\fR \fIn\fR);
.fi
.LP
.nf
\fBsize_t\fR \fBwcslen\fR(\fBconst wchar_t *\fR\fIws\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwcschr\fR(\fBconst wchar_t *\fR\fIws\fR, \fBwchar_t\fR \fIwc\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwcsrchr\fR(\fBconst wchar_t *\fR\fIws\fR, \fBwchar_t\fR \fIwc\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwcspbrk\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwcswcs\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBsize_t\fR \fBwcsspn\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBsize_t\fR \fBwcscspn\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.SS "XPG4, SUS, SUSv2, SUSv3"
.LP
.nf
\fBwchar_t *\fR\fBwcstok\fR(\fBwchar_t *restrict\fR \fIws1\fR, \fBconst wchar_t *restrict\fR \fIws2\fR);
.fi
.SS "Default and other standards"
.LP
.nf
\fBwchar_t *\fR\fBwcstok\fR(\fBwchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR, \fBwchar_t **\fR\fIptr\fR);
.fi
.LP
.nf
#include <widec.h>
\fBwchar_t *\fR\fBwscat\fR(\fBwchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwsncat\fR(\fBwchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR, \fBsize_t\fR \fIn\fR);
.fi
.LP
.nf
\fBint\fR \fBwscmp\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBint\fR \fBwsncmp\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR, \fBsize_t\fR \fIn\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwscpy\fR(\fBwchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwsncpy\fR(\fBwchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR, \fBsize_t\fR \fIn\fR);
.fi
.LP
.nf
\fBsize_t\fR \fBwslen\fR(\fBconst wchar_t *\fR\fIws\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwschr\fR(\fBconst wchar_t *\fR\fIws\fR, \fBwchat_t\fR \fIwc\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwsrchr\fR(\fBconst wchar_t *\fR\fIws\fR, \fBwchat_t\fR \fIwc\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwspbrk\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBsize_t\fR \fBwsspn\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBsize_t\fR \fBwscspn\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwstok\fR(\fBwchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwindex\fR(\fBconst wchar_t *\fR\fIws\fR, \fBwchar_t\fR \fIwc\fR);
.fi
.LP
.nf
\fBwchar_t *\fR\fBwrindex\fR(\fBconst wchar_t *\fR\fIws\fR, \fBwchar_t\fR \fIwc\fR);
.fi
.SS "ISO C++"
.LP
.nf
#include <wchar.h>
\fBconst wchar_t *\fR\fBwcschr\fR(\fBconst wchar_t *\fR\fIws\fR, \fBwchar_t\fR \fIwc\fR);
.fi
.LP
.nf
\fBconst wchar_t *\fR\fBwcspbrk\fR(\fBconst wchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBconst wchar_t *\fR\fBwcsrchr\fR(\fBconst wchar_t *\fR\fIws\fR, \fBwchar_t\fR \fIwc\fR);
.fi
.LP
.nf
#include <cwchar>
\fBwchar_t *std::\fR\fBwcschr\fR(\fBwchar_t *\fR\fIws\fR, \fBwchar_t\fR \fIwc\fR);
.fi
.LP
.nf
\fBwchar_t *std::\fR\fBwcspbrk\fR(\fBwchar_t *\fR\fIws1\fR, \fBconst wchar_t *\fR\fIws2\fR);
.fi
.LP
.nf
\fBwchar_t *std::\fR\fBwcsrchr\fR(\fBwchar_t *\fR\fIws\fR, \fBwchar_t\fR \fIwc\fR);
.fi
.SH DESCRIPTION
.sp
.LP
These functions operate on wide-character strings terminated by \fBwchar_t\fR
\fINULL\fR characters. During appending or copying, these routines do not check
for an overflow condition of the receiving string. In the following, \fIws\fR,
\fIws1\fR, and \fIws2\fR point to wide-character strings terminated by a
\fBwchar_t NULL\fR.
.SS "wcscat(\|), wscat(\|)"
.sp
.LP
The \fBwcscat()\fR and \fBwscat()\fR functions append a copy of the
wide-character string pointed to by \fIws2\fR (including the terminating null
wide-character code) to the end of the wide-character string pointed to by
\fIws1\fR. The initial wide-character code of \fIws2\fR overwrites the null
wide-character code at the end of \fIws1\fR. If copying takes place between
objects that overlap, the behavior is undefined. Both functions return
\fIs1\fR; no return value is reserved to indicate an error.
.SS "wcsncat(\|), wsncat(\|)"
.sp
.LP
The \fBwcsncat()\fR and \fBwsncat()\fR functions append not more than \fIn\fR
wide-character codes (a null wide-character code and wide-character codes that
follow it are not appended) from the array pointed to by \fIws2\fR to the end
of the wide-character string pointed to by \fIws1\fR. The initial
wide-character code of \fIws2\fR overwrites the null wide-character code at the
end of \fIws1\fR. A terminating null wide-character code is always appended to
the result. Both functions return \fIws1\fR; no return value is reserved to
indicate an error.
.SS "wcscmp(\|), wscmp(\|)"
.sp
.LP
The \fBwcscmp()\fR and \fBwscmp()\fR functions compare the wide-character
string pointed to by \fIws1\fR to the wide-character string pointed to by
\fIws2\fR. The sign of a non-zero return value is determined by the sign of the
difference between the values of the first pair of wide-character codes that
differ in the objects being compared. Upon completion, both functions return an
integer greater than, equal to, or less than zero, if the wide-character string
pointed to by \fIws1\fR is greater than, equal to, or less than the
wide-character string pointed to by \fIws2\fR.
.SS "wcsncmp(\|), wsncmp(\|)"
.sp
.LP
The \fBwcsncmp()\fR and \fBwsncmp()\fR functions compare not more than \fIn\fR
wide-character codes (wide-character codes that follow a null wide character
code are not compared) from the array pointed to by \fIws1\fR to the array
pointed to by \fIws2\fR. The sign of a non-zero return value is determined by
the sign of the difference between the values of the first pair of
wide-character codes that differ in the objects being compared. Upon successful
completion, both functions return an integer greater than, equal to, or less
than zero, if the possibly null-terminated array pointed to by \fIws1\fR is
greater than, equal to, or less than the possibly null-terminated array pointed
to by \fIws2\fR.
.SS "wcscpy(\|), wscpy(\|)"
.sp
.LP
The \fBwcscpy()\fR and \fBwscpy()\fR functions copy the wide-character string
pointed to by \fIws2\fR (including the terminating null wide-character code)
into the array pointed to by \fIws1\fR. If copying takes place between objects
that overlap, the behavior is undefined. Both functions return \fIws1\fR; no
return value is reserved to indicate an error.
.SS "wcsncpy(\|), wsncpy(\|)"
.sp
.LP
The \fBwcsncpy()\fR and \fBwsncpy()\fR functions copy not more than \fIn\fR
wide-character codes (wide-character codes that follow a null wide character
code are not copied) from the array pointed to by \fIws2\fR to the array
pointed to by \fIws1\fR. If copying takes place between objects that overlap,
the behavior is undefined. If the array pointed to by \fIws2\fR is a
wide-character string that is shorter than \fIn\fR wide-character codes, null
wide-character codes are appended to the copy in the array pointed to by
\fIws1\fR, until a total \fIn\fR wide-character codes are written. Both
functions return \fI ws1\fR; no return value is reserved to indicate an error.
.SS "wcslen(\|), wslen(\|)"
.sp
.LP
The \fBwcslen()\fR and \fBwslen()\fR functions compute the number of
wide-character codes in the wide-character string to which \fIws\fR points, not
including the terminating null wide-character code. Both functions return
\fIws\fR; no return value is reserved to indicate an error.
.SS "wcschr(\|), wschr(\|)"
.sp
.LP
The \fBwcschr()\fR and \fBwschr()\fR functions locate the first occurrence of
\fIwc\fR in the wide-character string pointed to by \fIws\fR. The value of
\fIwc\fR must be a character representable as a type \fBwchar_t\fR and must be
a wide-character code corresponding to a valid character in the current locale.
The terminating null wide-character code is considered to be part of the
wide-character string. Upon completion, both functions return a pointer to the
wide-character code, or a null pointer if the wide-character code is not found.
.SS "wcsrchr(\|), wsrchr(\|)"
.sp
.LP
The \fBwcsrchr()\fR and \fBwsrchr()\fR functions locate the last occurrence of
\fIwc\fR in the wide-character string pointed to by \fIws\fR. The value of
\fIwc\fR must be a character representable as a type \fBwchar_t\fR and must be
a wide-character code corresponding to a valid character in the current locale.
The terminating null wide-character code is considered to be part of the
wide-character string. Upon successful completion, both functions return a
pointer to the wide-character code, or a null pointer if \fIwc\fR does not
occur in the wide-character string.
.SS "windex(\|), wrindex(\|)"
.sp
.LP
The \fBwindex()\fR and \fBwrindex()\fR functions behave the same as
\fBwschr()\fR and \fBwsrchr()\fR, respectively.
.SS "wcspbrk(\|), wspbrk(\|)"
.sp
.LP
The \fBwcspbrk()\fR and \fBwspbrk()\fR functions locate the first occurrence in
the wide character string pointed to by \fIws1\fR of any wide-character code
from the wide-character string pointed to by \fIws2\fR. Upon successful
completion, the function returns a pointer to the wide-character code, or a
null pointer if no wide-character code from \fIws2\fR occurs in \fIws1\fR.
.SS "wcswcs(\|)"
.sp
.LP
The \fBwcswcs()\fR function locates the first occurrence in the wide-character
string pointed to by \fIws1\fR of the sequence of wide-character codes
(excluding the terminating null wide-character code) in the wide-character
string pointed to by \fIws2\fR. Upon successful completion, the function
returns a pointer to the located wide-character string, or a null pointer if
the wide-character string is not found. If \fIws2\fR points to a wide-character
string with zero length, the function returns \fIws1\fR.
.SS "wcsspn(\|), wsspn(\|)"
.sp
.LP
The \fBwcsspn()\fR and \fBwsspn()\fR functions compute the length of the
maximum initial segment of the wide-character string pointed to by \fIws1\fR
which consists entirely of wide-character codes from the wide-character string
pointed to by \fIws2\fR. Both functions return the length \fIws1\fR; no return
value is reserved to indicate an error.
.SS "wcscspn(\|), wscspn(\|)"
.sp
.LP
The \fBwcscspn()\fR and \fBwscspn()\fR functions compute the length of the
maximum initial segment of the wide-character string pointed to by \fIws1\fR
which consists entirely of wide-character codes \fInot\fR from the
wide-character string pointed to by \fIws2\fR. Both functions return the length
of the initial substring of \fIws1\fR; no return value is reserved to indicate
an error.
.SS "wcstok(\|), wstok(\|)"
.sp
.LP
A sequence of calls to the \fBwcstok()\fR and \fBwstok()\fR functions break the
wide-character string pointed to by \fIws1\fR into a sequence of tokens, each
of which is delimited by a wide-character code from the wide-character string
pointed to by \fIws2\fR.
.SS "Default and other standards"
.sp
.LP
The third argument points to a caller-provided \fBwchar_t\fR pointer into which
the \fBwcstok()\fR function stores information necessary for it to continue
scanning the same wide-character string. This argument is not available with
the XPG4 and SUS versions of \fBwcstok()\fR, nor is it available with the
\fBwstok()\fR function. See \fBstandards\fR(5).
.sp
.LP
The first call in the sequence has \fIws1\fR as its first argument, and is
followed by calls with a null pointer as their first argument. The separator
string pointed to by \fIws2\fR may be different from call to call.
.sp
.LP
The first call in the sequence searches the wide-character string pointed to by
\fIws1\fR for the first wide-character code that is \fInot\fR contained in the
current separator string pointed to by \fIws2\fR. If no such wide-character
code is found, then there are no tokens in the wide-character string pointed to
by \fIws1\fR, and \fBwcstok()\fR and \fBwstok()\fR return a null pointer. If
such a wide-character code is found, it is the start of the first token.
.sp
.LP
The \fBwcstok()\fR and \fBwstok()\fR functions then search from that point for
a wide-character code that \fIis\fR contained in the current separator string.
If no such wide-character code is found, the current token extends to the end
of the wide-character string pointed to by \fIws1\fR, and subsequent searches
for a token will return a null pointer. If such a wide-character code is found,
it is overwritten by a null wide character, which terminates the current token.
The \fBwcstok()\fR and \fBwstok()\fR functions save a pointer to the following
wide-character code, from which the next search for a token will start.
.sp
.LP
Each subsequent call, with a null pointer as the value of the first argument,
starts searching from the saved pointer and behaves as described above.
.sp
.LP
Upon successful completion, both functions return a pointer to the first
wide-character code of a token. Otherwise, if there is no token, a null pointer
is returned.
.SH ATTRIBUTES
.sp
.LP
See \fBattributes\fR(5) for descriptions of the following attributes:
.sp
.sp
.TS
tab() box;
cw(2.75i) |cw(2.75i)
lw(2.75i) |lw(2.75i)
.
ATTRIBUTE TYPEATTRIBUTE VALUE
_
CSIEnabled
_
Interface StabilitySee NOTES.
_
MT-LevelMT-Safe
.TE
.SH SEE ALSO
.sp
.LP
\fBmalloc\fR(3C), \fBstring\fR(3C), \fBwcswidth\fR(3C), \fBwcwidth\fR(3C),
\fBattributes\fR(5), \fBstandards\fR(5)
.SH NOTES
.sp
.LP
The \fBwcscat()\fR, \fBwcsncat()\fR, \fBwcscmp()\fR, \fBwcsncmp()\fR,
\fBwcscpy()\fR, \fBwcsncpy()\fR, \fBwcslen()\fR, \fBwcschr()\fR,
\fBwcsrchr()\fR, \fBwcspbrk()\fR, \fBwcswcs()\fR, \fBwcsspn()\fR,
\fBwcscspn()\fR, and \fBwcstok()\fR functions are Standard. The \fBwscat()\fR,
\fBwsncat()\fR, \fBwscmp()\fR, \fBwsncmp()\fR, \fBwscpy()\fR, \fBwsncpy()\fR,
\fBwslen()\fR, \fBwschr()\fR, \fBwsrchr()\fR, \fBwspbrk()\fR, \fBwsspn()\fR,
\fBwstok()\fR, \fBwindex()\fR, and \fBwrindex()\fR functions are Stable.
|