Changes in uspace/lib/posix/locale.h [4cf8ca6:324d46b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/locale.h
r4cf8ca6 r324d46b 30 30 * @{ 31 31 */ 32 /** @file Locale-specific definitions.32 /** @file 33 33 */ 34 34 35 35 #ifndef POSIX_LOCALE_H_ 36 36 #define POSIX_LOCALE_H_ 37 38 // TODO: documentation39 37 40 38 #ifndef NULL … … 85 83 86 84 struct posix_lconv { 87 char *currency_symbol;88 char *decimal_point;89 char frac_digits;90 char *grouping;91 char *int_curr_symbol;92 char int_frac_digits;93 char int_n_cs_precedes;94 char int_n_sep_by_space;95 char int_n_sign_posn;96 char int_p_cs_precedes;97 char int_p_sep_by_space;98 char int_p_sign_posn;99 char *mon_decimal_point;100 char *mon_grouping;101 char *mon_thousands_sep;102 char *negative_sign;103 char n_cs_precedes;104 char n_sep_by_space;105 char n_sign_posn;106 char *positive_sign;107 char p_cs_precedes;108 char p_sep_by_space;109 char p_sign_posn;110 char *thousands_sep;85 char *currency_symbol; 86 char *decimal_point; 87 char frac_digits; 88 char *grouping; 89 char *int_curr_symbol; 90 char int_frac_digits; 91 char int_n_cs_precedes; 92 char int_n_sep_by_space; 93 char int_n_sign_posn; 94 char int_p_cs_precedes; 95 char int_p_sep_by_space; 96 char int_p_sign_posn; 97 char *mon_decimal_point; 98 char *mon_grouping; 99 char *mon_thousands_sep; 100 char *negative_sign; 101 char n_cs_precedes; 102 char n_sep_by_space; 103 char n_sign_posn; 104 char *positive_sign; 105 char p_cs_precedes; 106 char p_sep_by_space; 107 char p_sign_posn; 108 char *thousands_sep; 111 109 }; 112 110 … … 119 117 extern posix_locale_t posix_newlocale(int category_mask, const char *locale, 120 118 posix_locale_t base); 121 extern posix_locale_t posix_uselocale (posix_locale_t newloc);119 extern posix_locale_t posix_uselocale (posix_locale_t newloc); 122 120 123 121 #ifndef LIBPOSIX_INTERNAL … … 133 131 #endif 134 132 133 135 134 #endif /* POSIX_LOCALE_H_ */ 136 135
Note:
See TracChangeset
for help on using the changeset viewer.