OSDN Git Service

(split) Import translated manuals from JM CVS Repository.
[linuxjm/LDP_man-pages.git] / original / man3 / wcschr.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 WCSCHR 3  1999-07-25 "GNU" "Linux Programmer's Manual"
15 .SH NAME
16 wcschr \- search a wide character in a wide-character string
17 .SH SYNOPSIS
18 .nf
19 .B #include <wchar.h>
20 .sp
21 .BI "wchar_t *wcschr(const wchar_t *" wcs ", wchar_t " wc );
22 .fi
23 .SH DESCRIPTION
24 The
25 .BR wcschr ()
26 function is the wide-character equivalent
27 of the
28 .BR strchr (3)
29 function.
30 It searches the first occurrence of \fIwc\fP in the wide-character
31 string pointed to by \fIwcs\fP.
32 .SH "RETURN VALUE"
33 The
34 .BR wcschr ()
35 function returns a pointer to the first occurrence of
36 \fIwc\fP in the wide-character string pointed to by \fIwcs\fP, or NULL if
37 \fIwc\fP does not occur in the string.
38 .SH "CONFORMING TO"
39 C99.
40 .SH "SEE ALSO"
41 .BR strchr (3),
42 .BR wcspbrk (3),
43 .BR wcsrchr (3),
44 .BR wcsstr (3),
45 .BR wmemchr (3)