]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/wcspbrk.3
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
[thirdparty/man-pages.git] / man3 / wcspbrk.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" References consulted:
9 .\" GNU glibc-2 source code and manual
10 .\" Dinkumware C library reference http://www.dinkumware.com/
11 .\" OpenGroup's Single Unix specification http://www.UNIX-systems.org/online.html
12 .\" ISO/IEC 9899:1999
13 .\"
14 .TH WCSPBRK 3 1999-07-25 "GNU" "Linux Programmer's Manual"
15 .SH NAME
16 wcspbrk \- search a wide-character string for any of a set of wide characters
17 .SH SYNOPSIS
18 .nf
19 .B #include <wchar.h>
20 .sp
21 .BI "wchar_t *wcspbrk(const wchar_t *" wcs ", const wchar_t *" accept );
22 .fi
23 .SH DESCRIPTION
24 The \fBwcspbrk\fP() function is the wide-character equivalent
25 of the \fBstrpbrk\fP() function.
26 It searches for the first occurrence in the wide-character
27 string pointed to by \fIwcs\fP of any of the
28 characters in the wide-character
29 string pointed to by \fIaccept\fP.
30 .SH "RETURN VALUE"
31 The \fBwcspbrk\fP() function returns a pointer to the first occurrence in
32 \fIwcs\fP of any of the characters listed in \fIaccept\fP.
33 If \fIwcs\fP
34 contains none of these characters, NULL is returned.
35 .SH "CONFORMING TO"
36 C99.
37 .SH "SEE ALSO"
38 .BR strpbrk (3),
39 .BR wcschr (3),
40 .BR wcscspn (3)