OSDN Git Service

89f0390ae140eb23ed45ddaaa383ec12919c4cae
[linuxjm/LDP_man-pages.git] / draft / man3 / wcslen.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 .\" About this Japanese page, please contact to JM Project <JM@linux.or.jp>
15 .\" Translated Mon Oct 18 22:43:56 JST 1999
16 .\"         by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
17 .\"
18 .TH WCSLEN 3  2011-09-28 "GNU" "Linux Programmer's Manual"
19 .\"O .SH NAME
20 .SH 名前
21 .\"O wcslen \- determine the length of a wide-character string
22 wcslen \- ワイド文字文字列の長さを求める
23 .\"O .SH SYNOPSIS
24 .SH 書式
25 .nf
26 .B #include <wchar.h>
27 .sp
28 .BI "size_t wcslen(const wchar_t *" s );
29 .fi
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The
33 .\"O .BR wcslen ()
34 .\"O function is the wide-character equivalent
35 .\"O of the
36 .\"O .BR strlen (3)
37 .\"O function.
38 .\"O It determines the length of the wide-character string pointed to
39 .\"O by \fIs\fP, excluding the terminating null wide chharacter (L\(aq\\0\(aq).
40 .BR wcslen ()
41 関数は、
42 .BR strlen (3)
43 関数に対応するワイド文字関数である。
44 この関数は、\fIs\fP が指すワイド文字文字列の長さを求める。
45 終端の NULL ワイド文字 (L\(aq\\0\(aq) はこの長さには含まれない。
46 .\"O .SH "RETURN VALUE"
47 .SH 返り値
48 .\"O The
49 .\"O .BR wcslen ()
50 .\"O function returns the
51 .\"O number of wide characters in \fIs\fP.
52 .BR wcslen ()
53 関数は、\fIs\fP に含まれるワイド文字の数を返す。
54 .\"O .SH "CONFORMING TO"
55 .SH 準拠
56 C99.
57 .\"O .SH "SEE ALSO"
58 .SH 関連項目
59 .BR strlen (3)