OSDN Git Service

076e58c8262f1e4c73051dcb6f83d2520ca868d4
[linuxjm/LDP_man-pages.git] / release / man3 / wcwidth.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 Sat Oct 23 20:06:18 JST 1999
15 .\"           by FUJIWARA Teruyoshi <fujiwara@linux.or.jp>
16 .\" Updated Fri Aug 16 01:32:21 JST 2002
17 .\"           by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
18 .\"
19 .TH WCWIDTH 3  2011-09-28 "GNU" "Linux Programmer's Manual"
20 .SH 名前
21 wcwidth \- ワイド文字が必要とするカラム数を調べる
22 .SH 書式
23 .nf
24 .B #define _XOPEN_SOURCE
25 .B #include <wchar.h>
26 .sp
27 .BI "int wcwidth(wchar_t " c );
28 .fi
29 .SH 説明
30 .BR wcwidth ()
31 関数は、ワイド文字 \fIc\fP を表現するために必要なカラム
32 数を返す。\fIc\fP が印刷可能文字ならば、この値は 0 以上である。
33 \fIc\fP が NULL ワイド文字 (L\(aq\\0\(aq) ならば、値は 0 である。
34 それ以外の場合には \-1 が返される。
35 .SH 返り値
36 .BR wcwidth ()
37 関数は、\fIc\fP の表現に必要なカラム数を返す。
38 .SH 準拠
39 POSIX.1-2001.
40
41 glibc 2.2.5 以前では以下のプロトタイプ宣言が使用されていたことに
42 注意すること。
43 .br
44 .nf
45 .BI "int wcwidth(wint_t " c );
46 .fi
47 .SH 注意
48 .BR wcwidth ()
49 の動作は、現在のロケールの
50 .B LC_CTYPE
51 カテゴリに依存する。
52 .SH 関連項目
53 .BR iswprint (3),
54 .BR wcswidth (3),
55 .BR feature_test_macros (7)