OSDN Git Service

(split) LDP: Update draft pages
[linuxjm/LDP_man-pages.git] / draft / man3 / localeconv.3
1 .\" Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" Modified Sat Jul 24 19:01:20 1993 by Rik Faith (faith@cs.unc.edu)
26 .\"*******************************************************************
27 .\"
28 .\" This file was generated with po4a. Translate the source file.
29 .\"
30 .\"*******************************************************************
31 .TH LOCALECONV 3 2013\-06\-21 GNU "Linux Programmer's Manual"
32 .SH 名前
33 localeconv \- 数値に関する書式情報を得る
34 .SH 書式
35 .nf
36 \fB#include <locale.h>\fP
37 .sp
38 \fBstruct lconv *localeconv(void);\fP
39 .fi
40 .SH 説明
41 \fBlocaleconv\fP()  関数は、現在のロケール情報を表す \fIstruct lconv\fP へのポインタを返す。 この構造体は
42 \fBlocale\fP(7)  で説明されており、ロケール・カテゴリ \fBLC_NUMERIC\fP と \fBLC_MONETARY\fP
43 に関連するすべての値を含んでいる。 この関数を用いるプログラムは、おそらく同時に \fBprintf\fP(3)  や \fBstrfmon\fP(3)
44 のような関数も用いるだろう。 これらの関数は、現在使用されているロケールに従った動作をする。
45 .SH 返り値
46 The \fBlocaleconv\fP()  function returns a pointer to a filled in \fIstruct
47 lconv\fP.  This structure may be (in glibc, \fIis\fP)  statically allocated, and
48 may be overwritten by subsequent calls.  According to POSIX, the caller
49 should not modify the contents of this structure.  The \fBlocaleconv\fP()
50 function always succeeds.
51 .SH 属性
52 .SS "マルチスレッディング (pthreads(7) 参照)"
53 The \fBlocaleconv\fP()  function is not thread\-safe, since it returns a pointer
54 to a structure which might be overwritten by subsequent calls.
55 .SH 準拠
56 C89, C99
57 .SH バグ
58 \fBprintf\fP(3)  グループの関数は現在のロケールを反映するかもしれないし、 しないかもしれない。
59 .SH 関連項目
60 \fBlocale\fP(1), \fBlocaledef\fP(1), \fBisalpha\fP(3), \fBnl_langinfo\fP(3),
61 \fBsetlocale\fP(3), \fBstrcoll\fP(3), \fBstrftime\fP(3), \fBlocale\fP(7)
62 .SH この文書について
63 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.52 の一部
64 である。プロジェクトの説明とバグ報告に関する情報は
65 http://www.kernel.org/doc/man\-pages/ に書かれている。