OSDN Git Service

(split) Convert release and draft pages to UTF-8.
[linuxjm/LDP_man-pages.git] / release / man3 / wcsnlen.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 .\"
13 .\" About this Japanese page, please contact to JM Project <JM@linux.or.jp>
14 .\" Translated Tue Oct 19 02:22:50 JST 1999
15 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
16 .\"
17 .TH WCSNLEN 3  2011-10-01 "GNU" "Linux Programmer's Manual"
18 .SH 名前
19 wcsnlen \- 固定長のワイド文字文字列の長さを求める
20 .SH 書式
21 .nf
22 .B #include <wchar.h>
23 .sp
24 .BI "size_t wcsnlen(const wchar_t *" s ", size_t " maxlen );
25 .fi
26 .sp
27 .in -4n
28 glibc 向けの機能検査マクロの要件
29 .RB ( feature_test_macros (7)
30 参照):
31 .in
32 .sp
33 .BR wcsncasecmp ():
34 .PD 0
35 .ad l
36 .RS 4
37 .TP 4
38 glibc 2.10 以降:
39 _XOPEN_SOURCE\ >=\ 700 || _POSIX_C_SOURCE\ >=\ 200809L
40 .TP
41 glibc 2.10 より前:
42 _GNU_SOURCE
43 .RE
44 .ad
45 .PD
46 .SH 説明
47 .BR wcsnlen ()
48 関数は、
49 .BR strnlen (3)
50 関数に対応するワイド文字関数である。
51 この関数は、\fIs\fP が指す文字列中のワイド文字の数を返すが、
52 返されるのはワイド文字で最大 \fImaxlen\fP 文字までである
53 (このパラメータはバイト数ではない点に注意)。
54 また、終端の NULL ワイド文字 (L\(aq\\0\(aq) は含まない。
55 これを行う際には、
56 .BR wcsnlen ()
57 は \fIs\fP が指すワイド文字列の最初の
58 \fImaxlen\fP 文字しか見ず、決して \fIs+maxlen\fP 文字を超えて文字列を
59 参照することはない。
60 .SH 返り値
61 .BR wcsnlen ()
62 関数は、\fIwcslen(s)\fP の値が \fImaxlen\fP より小さけれ
63 ば \fIwcslen(s)\fP を返す。あるいは、\fIs\fP が指すワイド文字列中の
64 最初の \fImaxlen\fP 文字に NULL ワイド文字が含まれていなければ
65 \fImaxlen\fP を返す。
66 .SH バージョン
67 .BR wcsnlen ()
68 関数は glibc バージョン 2.1 以降で提供されている。
69 .SH 準拠
70 POSIX.1-2008.
71 .SH 関連項目
72 .BR strnlen (3),
73 .BR wcslen (3)