1 /* Copyright (C) 1991, 1992, 1995, 1997 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
20 #include "localeinfo.h"
22 /* Return monetary and numeric information about the current locale. */
24 localeconv
__P ((void))
26 static struct lconv result
;
28 result
.decimal_point
= (char *) _NL_CURRENT (LC_NUMERIC
, DECIMAL_POINT
);
29 result
.thousands_sep
= (char *) _NL_CURRENT (LC_NUMERIC
, THOUSANDS_SEP
);
30 result
.grouping
= (char *) _NL_CURRENT (LC_NUMERIC
, GROUPING
);
32 result
.int_curr_symbol
= (char *) _NL_CURRENT (LC_MONETARY
, INT_CURR_SYMBOL
);
33 result
.currency_symbol
= (char *) _NL_CURRENT (LC_MONETARY
, CURRENCY_SYMBOL
);
34 result
.mon_decimal_point
= (char *) _NL_CURRENT (LC_MONETARY
,
36 result
.mon_thousands_sep
= (char *) _NL_CURRENT (LC_MONETARY
,
38 result
.mon_grouping
= (char *) _NL_CURRENT (LC_MONETARY
, MON_GROUPING
);
39 result
.positive_sign
= (char *) _NL_CURRENT (LC_MONETARY
, POSITIVE_SIGN
);
40 result
.negative_sign
= (char *) _NL_CURRENT (LC_MONETARY
, NEGATIVE_SIGN
);
41 result
.int_frac_digits
= *(char *) _NL_CURRENT (LC_MONETARY
,
43 result
.frac_digits
= *(char *) _NL_CURRENT (LC_MONETARY
, FRAC_DIGITS
);
44 result
.p_cs_precedes
= *(char *) _NL_CURRENT (LC_MONETARY
, P_CS_PRECEDES
);
45 result
.p_sep_by_space
= *(char *) _NL_CURRENT (LC_MONETARY
, P_SEP_BY_SPACE
);
46 result
.n_cs_precedes
= *(char *) _NL_CURRENT (LC_MONETARY
, P_CS_PRECEDES
);
47 result
.n_sep_by_space
= *(char *) _NL_CURRENT (LC_MONETARY
, N_SEP_BY_SPACE
);
48 result
.p_sign_posn
= *(char *) _NL_CURRENT (LC_MONETARY
, P_SIGN_POSN
);
49 result
.n_sign_posn
= *(char *) _NL_CURRENT (LC_MONETARY
, N_SIGN_POSN
);