6. Locale.h
Header file locale is useful for setting specific location information.
Variable:
struct LCONV
Macro:
Null
Lc_all
Lc_collate
Lc_ctype
Lc_monetary
Lc_numeric
Lc_time
Function:
Localeconv ();
SetLocale ();
6.1. Variables and Definitions
The data structure "Lconv" contains the following member variables. The use of this data structure will be described in "6.3 localeconv".
Char *decimal_point;
Char *thousands_sep;
Char *grouping;
Char *int_curr_symbol;
Char *currency_symbol;
Char *mon_decimal_point;
Char *mon_thousands_sep;
Char *mon_grouping;
Char *positive_sign;
Char *negative_sign;
Char int_frac_digits;
Char frac_digits;
Char p_cs_precedes;
Char P_sep_by_space;
Char n_cs_precedes;
Char N_sep_by_space;
Char p_sign_posn;
Char n_sign_posn;
The macro "LC_" will be described in 6.2 setlocale. "NULL" is a null pointer constant value.