First steps to get conformtest fully working
[platform/upstream/glibc.git] / conform / data / locale.h-data
1 type {struct lconv}
2 element {struct lconv} {char*} currency_symbol
3 element {struct lconv} {char*} decimal_point
4 element {struct lconv} char frac_digits
5 element {struct lconv} {char*} grouping
6 element {struct lconv} {char*} int_curr_symbol
7 element {struct lconv} char int_frac_digits
8 element {struct lconv} {char*} mon_decimal_point
9 element {struct lconv} {char*} mon_thousands_sep
10 element {struct lconv} {char*} mon_grouping
11 element {struct lconv} {char*} negative_sign
12 element {struct lconv} char n_cs_precedes
13 element {struct lconv} char n_sep_by_space
14 element {struct lconv} char n_sign_posn
15 element {struct lconv} {char*} positive_sign
16 element {struct lconv} char p_cs_precedes
17 element {struct lconv} char p_sep_by_space
18 element {struct lconv} char p_sign_posn
19 element {struct lconv} {char*} thousands_sep
20 #if !defined ISO && !defined POSIX && !defined XPG3 && !defined XPG4 && !defined UNIX98
21 element {struct lconv} char int_n_cs_precedes
22 element {struct lconv} char int_n_sep_by_space
23 element {struct lconv} char int_n_sign_posn
24 element {struct lconv} char int_p_cs_precedes
25 element {struct lconv} char int_p_sep_by_space
26 element {struct lconv} char int_p_sign_posn
27 #endif
28
29 constant NULL
30
31 macro LC_ALL
32 macro LC_COLLATE
33 macro LC_CTYPE
34 macro LC_MESSAGES
35 macro LC_MONETARY
36 macro LC_NUMERIC
37 macro LC_TIME
38
39 #if defined XOPEN2K8 || defined POSIX2008
40 constant LC_GLOBAL_LOCALE
41
42 macro LC_COLLATE_MASK
43 macro LC_CTYPE_MASK
44 macro LC_MESSAGES_MASK
45 macro LC_MONETARY_MASK
46 macro LC_NUMERIC_MASK
47 macro LC_TIME_MASK
48 macro LC_ALL_MASK
49
50 type locale_t
51 #endif
52
53 function {struct lconv*} localeconv (void)
54 function {char*} setlocale (int, const char*)
55 #if defined XOPEN2K8 || defined POSIX2008
56 function locale_t duplocale (locale_t)
57 function void freelocale (locale_t)
58 function locale_t newlocale (int, const char*, locale_t)
59 function locale_t uselocale (locale_t)
60 #endif
61
62 allow LC_*
63 allow *_t
64 #if defined XOPEN2K8 || defined POSIX2008
65 allow LC_*_MASK
66 #endif