OSDN Git Service

8738eda58754e15baea164a7c5b47f3b7e80362b
[linuxjm/LDP_man-pages.git] / draft / man3 / localeconv.3
1 .\" Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\" License.
23 .\" Modified Sat Jul 24 19:01:20 1993 by Rik Faith (faith@cs.unc.edu)
24 .\"
25 .\" Japanese Version Copyright (c) 1997 YOSHINO Takashi
26 .\"       all rights reserved.
27 .\" Translated Tue May 26 00:11:13 JST 1998
28 .\"       by YOSHINO Takashi <yoshino@eng.toyo.ac.jp>
29 .\"
30 .TH LOCALECONV 3  1993-04-25 "GNU" "Linux Programmer's Manual"
31 .\"O .SH NAME
32 .SH 名前
33 .\"O localeconv \- get numeric formatting information
34 localeconv \- 数値に関する書式情報を得る
35 .\"O .SH SYNOPSIS
36 .SH 書式
37 .nf
38 .B #include <locale.h>
39 .sp
40 .B struct lconv *localeconv(void);
41 .fi
42 .\"O .SH DESCRIPTION
43 .SH 説明
44 .\"O The
45 .\"O .BR localeconv ()
46 .\"O function returns a pointer to a
47 .\"O .I struct lconv
48 .\"O for the current locale.
49 .\"O This structure is shown in
50 .\"O .BR locale (7),
51 .\"O and contains all values associated with the locale categories
52 .\"O .B LC_NUMERIC
53 .\"O and
54 .\"O .BR LC_MONETARY .
55 .BR localeconv ()
56 関数は、現在のロケール情報を表す
57 .I struct lconv
58 へのポインタを返す。
59 この構造体は
60 .BR locale (7)
61 で説明されており、ロケール・カテゴリ
62 .B LC_NUMERIC
63
64 .B LC_MONETARY
65 に関連するすべての値を含んでいる。
66 .\"O Programs may also use the functions
67 .\"O .BR printf (3)
68 .\"O and
69 .\"O .BR strfmon (3)
70 .\"O which behave according to the actual locale in use.
71 この関数を用いるプログラムは、おそらく同時に
72 .BR printf (3)
73
74 .BR strfmon (3)
75 のような関数も用いるだろう。
76 これらの関数は、現在使用されているロケールに従った動作をする。
77 .\"O .SH "CONFORMING TO"
78 .SH 準拠
79 C89, C99
80 .\"O .SH BUGS
81 .SH バグ
82 .\"O The
83 .\"O .BR printf (3)
84 .\"O family of functions may or may not honor the current locale.
85 .BR printf (3)
86 グループの関数は現在のロケールを反映するかもしれないし、
87 しないかもしれない。
88 .\"O .SH "SEE ALSO"
89 .SH 関連項目
90 .BR locale (1),
91 .BR localedef (1),
92 .BR isalpha (3),
93 .BR nl_langinfo (3),
94 .BR setlocale (3),
95 .BR strcoll (3),
96 .BR strftime (3),
97 .BR locale (7)