* added compilers lcc and bcc (linux86)
[mascara-docs.git] / compilers / lcc-4.2 / include / mips / irix / locale.h
blob8a96636577fcc159d43c5debb0178615bc1638cc
1 #ifndef __LOCALE
2 #define __LOCALE
4 #define LC_ALL 0
5 #define LC_COLLATE 1
6 #define LC_CTYPE 2
7 #define LC_MONETARY 3
8 #define LC_NUMERIC 4
9 #define LC_TIME 5
10 #ifndef NULL
11 #define NULL ((void*)0)
12 #endif
14 struct lconv {
15 char *decimal_point;
16 char *thousands_sep;
17 char *grouping;
18 char *int_curr_symbol;
19 char *currency_symbol;
20 char *mon_decimal_point;
21 char *mon_thousands_sep;
22 char *mon_grouping;
23 char *positive_sign;
24 char *negative_sign;
25 char int_frac_digits;
26 char frac_digits;
27 char p_cs_precedes;
28 char p_sep_by_space;
29 char n_cs_precedes;
30 char n_sep_by_space;
31 char p_sign_posn;
32 char n_sign_posn;
35 char *setlocale(int, const char *);
36 struct lconv *localeconv(void);
38 #endif /* __LOCALE */