123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705 |
- #include <locale.h>
- #include <langinfo.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <wctype.h>
- #include <string.h>
- #include <stdint.h>
- static const char *_empty_str = "";
- static const char *_C_name = "C";
- static wchar_t* _ToWChar(const char* buf, wchar_t *wbuf, size_t wbufSize) {
- wchar_t *wcur = wbuf;
- wchar_t *wend = wbuf + wbufSize - 1;
- for (; wcur != wend && *buf != 0; ++buf, ++wcur)
- *wcur = *buf;
- *wcur = 0;
- return wbuf;
- }
- #if 0
- struct _Locale_ctype
- {
- locale_t __cloc;
- };
- struct _Locale_numeric
- {
- locale_t __cloc;
- };
- struct _Locale_time
- {
- locale_t __cloc;
- };
- struct _Locale_collate
- {
- locale_t __cloc;
- };
- struct _Locale_monetary
- {
- locale_t __cloc;
- };
- struct _Locale_messages
- {
- locale_t __cloc;
- };
- #endif
- void _Locale_init()
- {}
- void _Locale_final()
- {}
- struct _Locale_ctype *_Locale_ctype_create(const char *nm, struct _Locale_name_hint* hint,
- int *__err_code) {
- *__err_code = _STLP_LOC_UNKNOWN_NAME;
- return (struct _Locale_ctype*)newlocale(LC_CTYPE_MASK, nm, NULL);
- }
- struct _Locale_codecvt *_Locale_codecvt_create(const char *nm, struct _Locale_name_hint* hint,
- int *__err_code) {
- // Glibc do not support multibyte manipulation for the moment, it simply implements "C".
- if (nm[0] == 'C' && nm[1] == 0)
- { return (struct _Locale_codecvt*)0x01; }
- *__err_code = _STLP_LOC_NO_PLATFORM_SUPPORT; return 0;
- }
- struct _Locale_numeric *_Locale_numeric_create(const char *nm, struct _Locale_name_hint* hint,
- int *__err_code) {
- *__err_code = _STLP_LOC_UNKNOWN_NAME;
- return (struct _Locale_numeric*)newlocale(LC_NUMERIC_MASK, nm, NULL);
- }
-
- struct _Locale_time *_Locale_time_create(const char *nm, struct _Locale_name_hint* hint,
- int *__err_code) {
- *__err_code = _STLP_LOC_UNKNOWN_NAME;
- return (struct _Locale_time*)newlocale(LC_TIME_MASK, nm, NULL);
- }
- struct _Locale_collate *_Locale_collate_create(const char *nm, struct _Locale_name_hint* hint,
- int *__err_code) {
- *__err_code = _STLP_LOC_UNKNOWN_NAME;
- return (struct _Locale_collate*)newlocale(LC_COLLATE_MASK, nm, NULL);
- }
- struct _Locale_monetary *_Locale_monetary_create(const char *nm, struct _Locale_name_hint* hint,
- int *__err_code) {
- *__err_code = _STLP_LOC_UNKNOWN_NAME;
- return (struct _Locale_monetary*)newlocale(LC_MONETARY_MASK, nm, NULL);
- }
- struct _Locale_messages *_Locale_messages_create(const char *nm, struct _Locale_name_hint* hint,
- int *__err_code) {
- *__err_code = _STLP_LOC_UNKNOWN_NAME;
- return (struct _Locale_messages*)newlocale(LC_MESSAGES_MASK, nm, NULL);
- }
- /*
- try to see locale category LC should be used from environment;
- according POSIX, the order is
- 1. LC_ALL
- 2. category (LC_CTYPE, LC_NUMERIC, ... )
- 3. LANG
- If set nothing, return "C" (this really implementation-specific).
- */
- static const char *_Locale_aux_default( const char *LC, char *nm )
- {
- char *name = getenv( "LC_ALL" );
- if ( name != NULL && *name != 0 ) {
- return name;
- }
- name = getenv( LC );
- if ( name != NULL && *name != 0 ) {
- return name;
- }
- name = getenv( "LANG" );
- if ( name != NULL && *name != 0 ) {
- return name;
- }
- return _C_name;
- }
- const char *_Locale_ctype_default( char *nm )
- {
- return _Locale_aux_default( "LC_CTYPE", nm );
- }
- const char *_Locale_numeric_default( char *nm )
- {
- return _Locale_aux_default( "LC_NUMERIC", nm );
- }
- const char *_Locale_time_default( char *nm )
- {
- return _Locale_aux_default( "LC_TIME", nm );
- }
- const char *_Locale_collate_default( char *nm )
- {
- return _Locale_aux_default( "LC_COLLATE", nm );
- }
- const char *_Locale_monetary_default( char *nm )
- {
- return _Locale_aux_default( "LC_MONETARY", nm );
- }
- const char *_Locale_messages_default( char *nm )
- {
- return _Locale_aux_default( "LC_MESSAGES", nm );
- }
- char const*_Locale_ctype_name( const struct _Locale_ctype *__loc, char *buf )
- {
- return ((locale_t)__loc)->__names[LC_CTYPE];
- }
- char const*_Locale_codecvt_name( const struct _Locale_codecvt *__loc, char *buf )
- {
- return _C_name;
- }
- char const*_Locale_numeric_name( const struct _Locale_numeric *__loc, char *buf )
- {
- return ((locale_t)__loc)->__names[LC_NUMERIC];
- }
- char const*_Locale_time_name( const struct _Locale_time *__loc, char *buf )
- {
- return ((locale_t)__loc)->__names[LC_TIME];
- }
- char const*_Locale_collate_name( const struct _Locale_collate *__loc, char *buf )
- {
- return ((locale_t)__loc)->__names[LC_COLLATE];
- }
- char const*_Locale_monetary_name( const struct _Locale_monetary *__loc, char *buf )
- {
- return ((locale_t)__loc)->__names[LC_MONETARY];
- }
- char const*_Locale_messages_name( const struct _Locale_messages *__loc, char *buf )
- {
- return ((locale_t)__loc)->__names[LC_MESSAGES];
- }
- void _Locale_ctype_destroy( struct _Locale_ctype *__loc )
- { freelocale((locale_t)__loc); }
- void _Locale_codecvt_destroy( struct _Locale_codecvt *__loc )
- {}
- void _Locale_numeric_destroy( struct _Locale_numeric *__loc )
- { freelocale((locale_t)__loc); }
- void _Locale_time_destroy( struct _Locale_time *__loc )
- { freelocale((locale_t)__loc); }
- void _Locale_collate_destroy( struct _Locale_collate *__loc )
- { freelocale((locale_t)__loc); }
- void _Locale_monetary_destroy( struct _Locale_monetary *__loc )
- { freelocale((locale_t)__loc); }
- void _Locale_messages_destroy( struct _Locale_messages* __loc )
- { freelocale((locale_t)__loc); }
- /*
- * locale loc expected either locale name indeed (platform-specific)
- * or string like "LC_CTYPE=LocaleNameForCType;LC_NUMERIC=LocaleNameForNum;"
- *
- */
- static char const*__Extract_locale_name( const char *loc, const char *category, char *buf )
- {
- char *expr;
- size_t len_name;
- if( loc[0]=='L' && loc[1]=='C' && loc[2]=='_') {
- expr = strstr( (char*)loc, category );
- if ( expr == NULL )
- return NULL; /* Category not found. */
- ++expr;
- len_name = strcspn( expr, ";" );
- len_name = len_name >= _Locale_MAX_SIMPLE_NAME ? _Locale_MAX_SIMPLE_NAME - 1 : len_name;
- strncpy( buf, expr, len_name );
- buf[len_name] = 0;
- return buf;
- }
- return loc;
- }
- char const*_Locale_extract_ctype_name(const char *loc, char *buf,
- struct _Locale_name_hint* hint, int *__err_code)
- { return __Extract_locale_name( loc, "LC_CTYPE=", buf ); }
- char const*_Locale_extract_numeric_name(const char *loc, char *buf,
- struct _Locale_name_hint* hint, int *__err_code)
- { return __Extract_locale_name( loc, "LC_NUMERIC=", buf ); }
- char const*_Locale_extract_time_name(const char *loc, char *buf,
- struct _Locale_name_hint* hint, int *__err_code)
- { return __Extract_locale_name( loc, "LC_TIME=", buf ); }
- char const*_Locale_extract_collate_name(const char *loc, char *buf,
- struct _Locale_name_hint* hint, int *__err_code)
- { return __Extract_locale_name( loc, "LC_COLLATE=", buf ); }
- char const*_Locale_extract_monetary_name(const char *loc, char *buf,
- struct _Locale_name_hint* hint, int *__err_code)
- { return __Extract_locale_name( loc, "LC_MONETARY=", buf ); }
- char const*_Locale_extract_messages_name(const char *loc, char *buf,
- struct _Locale_name_hint* hint, int *__err_code)
- { return __Extract_locale_name( loc, "LC_MESSAGES=", buf ); }
- struct _Locale_name_hint* _Locale_get_ctype_hint(struct _Locale_ctype* ctype)
- { return 0; }
- struct _Locale_name_hint* _Locale_get_numeric_hint(struct _Locale_numeric* numeric)
- { return 0; }
- struct _Locale_name_hint* _Locale_get_time_hint(struct _Locale_time* time)
- { return 0; }
- struct _Locale_name_hint* _Locale_get_collate_hint(struct _Locale_collate* collate)
- { return 0; }
- struct _Locale_name_hint* _Locale_get_monetary_hint(struct _Locale_monetary* monetary)
- { return 0; }
- struct _Locale_name_hint* _Locale_get_messages_hint(struct _Locale_messages* messages)
- { return 0; }
- /* ctype */
- const _Locale_mask_t *_Locale_ctype_table( struct _Locale_ctype *__loc )
- {
- /* return table with masks (upper, lower, alpha, etc.) */
- _STLP_STATIC_ASSERT( sizeof(_Locale_mask_t) == sizeof(((locale_t)__loc)->__ctype_b[0]) )
- return ((locale_t)__loc)->__ctype_b;
- }
- int _Locale_toupper( struct _Locale_ctype *__loc, int c )
- { return ((locale_t)__loc)->__ctype_toupper[c]; }
- int _Locale_tolower( struct _Locale_ctype *__loc, int c )
- { return ((locale_t)__loc)->__ctype_tolower[c]; }
- #if !defined (_STLP_NO_WCHAR_T)
- _Locale_mask_t _WLocale_ctype( struct _Locale_ctype *__loc, wint_t wc, _Locale_mask_t __mask )
- {
- _Locale_mask_t ret = 0;
- if ((__mask & _Locale_ALPHA) != 0 && iswalpha_l(wc, (locale_t)__loc))
- ret |= _Locale_ALPHA;
-
- if ((__mask & _Locale_CNTRL) != 0 && iswcntrl_l(wc, (locale_t)__loc))
- ret |= _Locale_CNTRL;
- if ((__mask & _Locale_DIGIT) != 0 && iswdigit_l(wc, (locale_t)__loc))
- ret |= _Locale_DIGIT;
- if ((__mask & _Locale_PRINT) != 0 && iswprint_l(wc, (locale_t)__loc))
- ret |= _Locale_PRINT;
- if ((__mask & _Locale_PUNCT) != 0 && iswpunct_l(wc, (locale_t)__loc))
- ret |= _Locale_PUNCT;
- if ((__mask & _Locale_SPACE) != 0 && iswspace_l(wc, (locale_t)__loc))
- ret |= _Locale_SPACE;
- if ((__mask & _Locale_XDIGIT) != 0 && iswxdigit_l(wc, (locale_t)__loc))
- ret |= _Locale_XDIGIT;
- if ((__mask & _Locale_UPPER) != 0 && iswupper_l(wc, (locale_t)__loc))
- ret |= _Locale_UPPER;
- if ((__mask & _Locale_LOWER) != 0 && iswlower_l(wc, (locale_t)__loc))
- ret |= _Locale_LOWER;
- return ret;
- }
- wint_t _WLocale_tolower( struct _Locale_ctype *__loc, wint_t c )
- {
- return towlower_l( c, ((locale_t)__loc) );
- }
- wint_t _WLocale_toupper( struct _Locale_ctype *__loc, wint_t c )
- {
- return towupper_l( c, ((locale_t)__loc) );
- }
- #endif
- int _WLocale_mb_cur_max( struct _Locale_codecvt * lcodecvt) { return 1; }
- int _WLocale_mb_cur_min( struct _Locale_codecvt * lcodecvt) { return 1; }
- int _WLocale_is_stateless( struct _Locale_codecvt * lcodecvt) { return 1; }
- #if !defined (_STLP_NO_WCHAR_T)
- size_t _WLocale_mbtowc(struct _Locale_codecvt *lcodecvt,
- wchar_t *to,
- const char *from, size_t n,
- mbstate_t *st)
- { *to = *from; return 1; }
- size_t _WLocale_wctomb(struct _Locale_codecvt *lcodecvt,
- char *to, size_t n,
- const wchar_t c,
- mbstate_t *st)
- { *to = (char)c; return 1; }
- #endif
- size_t _WLocale_unshift(struct _Locale_codecvt *lcodecvt,
- mbstate_t *st,
- char *buf, size_t n, char ** next)
- { *next = buf; return 0; }
- /* Collate */
- int _Locale_strcmp(struct _Locale_collate * __loc,
- const char *s1, size_t n1,
- const char *s2, size_t n2) {
- int ret = 0;
- char buf1[64], buf2[64];
- while (n1 > 0 || n2 > 0) {
- size_t bufsize1 = n1 < 63 ? n1 : 63;
- size_t bufsize2 = n2 < 63 ? n2 : 63;
- strncpy(buf1, s1, bufsize1); buf1[bufsize1] = 0;
- strncpy(buf2, s2, bufsize2); buf2[bufsize2] = 0;
- ret = strcoll_l(buf1, buf2, (locale_t)__loc);
- if (ret != 0) return ret;
- s1 += bufsize1; n1 -= bufsize1;
- s2 += bufsize2; n2 -= bufsize2;
- }
- return ret;
- }
- #if !defined (_STLP_NO_WCHAR_T)
- int _WLocale_strcmp(struct _Locale_collate *__loc,
- const wchar_t *s1, size_t n1,
- const wchar_t *s2, size_t n2) {
- int ret = 0;
- wchar_t buf1[64], buf2[64];
- while (n1 > 0 || n2 > 0) {
- size_t bufsize1 = n1 < 63 ? n1 : 63;
- size_t bufsize2 = n2 < 63 ? n2 : 63;
- wcsncpy(buf1, s1, bufsize1); buf1[bufsize1] = 0;
- wcsncpy(buf2, s2, bufsize2); buf2[bufsize2] = 0;
- ret = wcscoll_l(buf1, buf2, (locale_t)__loc);
- if (ret != 0) return ret;
- s1 += bufsize1; n1 -= bufsize1;
- s2 += bufsize2; n2 -= bufsize2;
- }
- return ret;
- }
- #endif
- size_t _Locale_strxfrm(struct _Locale_collate *__loc,
- char *dest, size_t dest_n,
- const char *src, size_t src_n )
- {
- const char *real_src;
- char *buf = NULL;
- size_t result;
- if (src_n == 0)
- {
- if (dest != NULL) dest[0] = 0;
- return 0;
- }
- if (src[src_n] != 0) {
- buf = malloc(src_n + 1);
- strncpy(buf, src, src_n);
- buf[src_n] = 0;
- real_src = buf;
- }
- else
- real_src = src;
- result = strxfrm_l(dest, real_src, dest_n, (locale_t)__loc);
- if (buf != NULL) free(buf);
- return result;
- }
- # ifndef _STLP_NO_WCHAR_T
- size_t _WLocale_strxfrm( struct _Locale_collate *__loc,
- wchar_t *dest, size_t dest_n,
- const wchar_t *src, size_t src_n )
- {
- const wchar_t *real_src;
- wchar_t *buf = NULL;
- size_t result;
- if (src_n == 0)
- {
- if (dest != NULL) dest[0] = 0;
- return 0;
- }
- if (src[src_n] != 0) {
- buf = malloc((src_n + 1) * sizeof(wchar_t));
- wcsncpy(buf, src, src_n);
- buf[src_n] = 0;
- real_src = buf;
- }
- else
- real_src = src;
- result = wcsxfrm_l(dest, real_src, dest_n, (locale_t)__loc);
- if (buf != NULL) free(buf);
- return result;
- }
- # endif
- /* Numeric */
- char _Locale_decimal_point(struct _Locale_numeric *__loc)
- {
- return *(nl_langinfo_l(RADIXCHAR, (locale_t)__loc));
- }
- char _Locale_thousands_sep(struct _Locale_numeric *__loc)
- {
- return *(nl_langinfo_l(THOUSEP, (locale_t)__loc));
- }
- const char* _Locale_grouping(struct _Locale_numeric *__loc)
- {
- return (_Locale_thousands_sep(__loc) != 0 ) ? (nl_langinfo_l(GROUPING, (locale_t)__loc)) : _empty_str;
- }
- const char *_Locale_true(struct _Locale_numeric *__loc)
- {
- return nl_langinfo_l(YESSTR, (locale_t)__loc);
- }
- const char *_Locale_false(struct _Locale_numeric *__loc)
- {
- return nl_langinfo_l(NOSTR, (locale_t)__loc);
- }
- #ifndef _STLP_NO_WCHAR_T
- wchar_t _WLocale_decimal_point(struct _Locale_numeric *__loc)
- { return (wchar_t)_Locale_decimal_point(__loc); }
- wchar_t _WLocale_thousands_sep(struct _Locale_numeric *__loc)
- { return (wchar_t)_Locale_thousands_sep(__loc); }
- const wchar_t *_WLocale_true(struct _Locale_numeric *__loc, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_true(__loc), buf, bufSize); }
- const wchar_t *_WLocale_false(struct _Locale_numeric *__loc, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_false(__loc), buf, bufSize); }
- #endif
- /* Monetary */
- const char *_Locale_int_curr_symbol(struct _Locale_monetary *__loc)
- {
- return nl_langinfo_l(INT_CURR_SYMBOL, (locale_t)__loc);
- }
- const char *_Locale_currency_symbol(struct _Locale_monetary *__loc)
- {
- return nl_langinfo_l(CURRENCY_SYMBOL, (locale_t)__loc);
- }
- char _Locale_mon_decimal_point(struct _Locale_monetary * __loc)
- {
- return *(nl_langinfo_l(MON_DECIMAL_POINT,(locale_t)__loc));
- }
- char _Locale_mon_thousands_sep(struct _Locale_monetary *__loc)
- {
- return *(nl_langinfo_l(MON_THOUSANDS_SEP, (locale_t)__loc));
- }
- #ifndef _STLP_NO_WCHAR_T
- const wchar_t *_WLocale_int_curr_symbol(struct _Locale_monetary *__loc, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_int_curr_symbol(__loc), buf, bufSize); }
- const wchar_t *_WLocale_currency_symbol(struct _Locale_monetary *__loc, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_currency_symbol(__loc), buf, bufSize); }
- wchar_t _WLocale_mon_decimal_point(struct _Locale_monetary * __loc)
- { return (wchar_t)_Locale_mon_decimal_point(__loc); }
- wchar_t _WLocale_mon_thousands_sep(struct _Locale_monetary * __loc)
- { return (wchar_t)_Locale_mon_thousands_sep(__loc); }
- const wchar_t *_WLocale_positive_sign(struct _Locale_monetary *__loc, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_positive_sign(__loc), buf, bufSize); }
- const wchar_t *_WLocale_negative_sign(struct _Locale_monetary *__loc, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_negative_sign(__loc), buf, bufSize); }
- #endif
- const char *_Locale_mon_grouping(struct _Locale_monetary *__loc)
- {
- return (_Locale_mon_thousands_sep( __loc ) != 0 ) ? nl_langinfo_l(MON_GROUPING, (locale_t)__loc) : _empty_str;
- }
- const char *_Locale_positive_sign(struct _Locale_monetary *__loc)
- {
- return nl_langinfo_l(POSITIVE_SIGN, (locale_t)__loc);
- }
- const char *_Locale_negative_sign(struct _Locale_monetary *__loc)
- {
- return nl_langinfo_l(NEGATIVE_SIGN, (locale_t)__loc);
- }
- char _Locale_int_frac_digits(struct _Locale_monetary *__loc)
- {
- /* We are forced to manually handled the "C" locale for consistency with
- * the default implementation in STLport. */
- const char* lname = ((locale_t)__loc)->__names[LC_MONETARY];
- if (lname[0] == 'C' && lname[1] == 0)
- return 0;
- return *(nl_langinfo_l(INT_FRAC_DIGITS, (locale_t)__loc));
- }
- char _Locale_frac_digits(struct _Locale_monetary *__loc)
- {
- /* We are forced to manually handled the "C" locale for consistency with
- * the default implementation in STLport. */
- const char* lname = ((locale_t)__loc)->__names[LC_MONETARY];
- if (lname[0] == 'C' && lname[1] == 0)
- return 0;
- return *(nl_langinfo_l(FRAC_DIGITS, (locale_t)__loc));
- }
- /* 1 if currency_symbol precedes a positive value, 0 if succeeds */
- int _Locale_p_cs_precedes(struct _Locale_monetary *__loc)
- {
- return *(nl_langinfo_l(P_CS_PRECEDES, (locale_t)__loc));
- }
- /* 1 if a space separates currency_symbol from a positive value. */
- int _Locale_p_sep_by_space(struct _Locale_monetary *__loc)
- {
- return *(nl_langinfo_l(P_SEP_BY_SPACE, (locale_t)__loc));
- }
- /*
- * 0 Parentheses surround the quantity and currency_symbol
- * 1 The sign string precedes the quantity and currency_symbol
- * 2 The sign string succeeds the quantity and currency_symbol.
- * 3 The sign string immediately precedes the currency_symbol.
- * 4 The sign string immediately succeeds the currency_symbol.
- */
- int _Locale_p_sign_posn(struct _Locale_monetary *__loc)
- {
- return *(nl_langinfo_l(P_SIGN_POSN, (locale_t)__loc));
- }
- /* 1 if currency_symbol precedes a negative value, 0 if succeeds */
- int _Locale_n_cs_precedes(struct _Locale_monetary *__loc)
- {
- return *(nl_langinfo_l(N_CS_PRECEDES, (locale_t)__loc));
- }
- /* 1 if a space separates currency_symbol from a negative value. */
- int _Locale_n_sep_by_space(struct _Locale_monetary *__loc)
- {
- return *(nl_langinfo_l(N_SEP_BY_SPACE, (locale_t)__loc));
- }
- /*
- * 0 Parentheses surround the quantity and currency_symbol
- * 1 The sign string precedes the quantity and currency_symbol
- * 2 The sign string succeeds the quantity and currency_symbol.
- * 3 The sign string immediately precedes the currency_symbol.
- * 4 The sign string immediately succeeds the currency_symbol.
- */
- int _Locale_n_sign_posn(struct _Locale_monetary *__loc)
- {
- return *(nl_langinfo_l(N_SIGN_POSN, (locale_t)__loc));
- }
- /* Time */
- const char *_Locale_full_monthname(struct _Locale_time *__loc, int _m )
- {
- return nl_langinfo_l(MON_1 + _m, (locale_t)__loc);
- }
- const char *_Locale_abbrev_monthname(struct _Locale_time *__loc, int _m )
- {
- return nl_langinfo_l(ABMON_1 + _m, (locale_t)__loc);
- }
- const char *_Locale_full_dayofweek(struct _Locale_time *__loc, int _d )
- {
- return nl_langinfo_l(DAY_1 + _d, (locale_t)__loc);
- }
- const char *_Locale_abbrev_dayofweek(struct _Locale_time *__loc, int _d )
- {
- return nl_langinfo_l(ABDAY_1 + _d, (locale_t)__loc);
- }
- const char *_Locale_d_t_fmt(struct _Locale_time *__loc)
- {
- return nl_langinfo_l(D_T_FMT, (locale_t)__loc);
- }
- const char *_Locale_d_fmt(struct _Locale_time *__loc )
- {
- return nl_langinfo_l(D_FMT, (locale_t)__loc);
- }
- const char *_Locale_t_fmt(struct _Locale_time *__loc )
- {
- return nl_langinfo_l(T_FMT, (locale_t)__loc);
- }
- const char *_Locale_long_d_t_fmt(struct _Locale_time *__loc )
- {
- return nl_langinfo_l(ERA_D_T_FMT, (locale_t)__loc);
- }
- const char *_Locale_long_d_fmt(struct _Locale_time *__loc )
- {
- return nl_langinfo_l(ERA_D_FMT, (locale_t)__loc);
- }
- const char *_Locale_am_str(struct _Locale_time *__loc )
- {
- return nl_langinfo_l(AM_STR, (locale_t)__loc);
- }
- const char *_Locale_pm_str(struct _Locale_time* __loc )
- {
- return nl_langinfo_l(PM_STR, (locale_t)__loc);
- }
- #ifndef _STLP_NO_WCHAR_T
- const wchar_t *_WLocale_full_monthname(struct _Locale_time *__loc, int _m, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_full_monthname(__loc, _m), buf, bufSize); }
- const wchar_t *_WLocale_abbrev_monthname(struct _Locale_time *__loc, int _m, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_abbrev_monthname(__loc, _m), buf, bufSize); }
- const wchar_t *_WLocale_full_dayofweek(struct _Locale_time *__loc, int _d, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_full_dayofweek(__loc, _d), buf, bufSize); }
- const wchar_t *_WLocale_abbrev_dayofweek(struct _Locale_time *__loc, int _d, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_abbrev_dayofweek(__loc, _d), buf, bufSize); }
- const wchar_t *_WLocale_am_str(struct _Locale_time *__loc, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_am_str(__loc), buf, bufSize); }
- const wchar_t *_WLocale_pm_str(struct _Locale_time* __loc, wchar_t *buf, size_t bufSize)
- { return _ToWChar(_Locale_pm_str(__loc), buf, bufSize); }
- #endif
- /* Messages */
- nl_catd_type _Locale_catopen(struct _Locale_messages *__loc, const char *__cat_name )
- {
- return catopen( __cat_name, NL_CAT_LOCALE );
- }
- void _Locale_catclose(struct _Locale_messages *__loc, nl_catd_type __cat )
- {
- catclose( __cat );
- }
- const char *_Locale_catgets(struct _Locale_messages *__loc, nl_catd_type __cat,
- int __setid, int __msgid, const char *dfault)
- {
- return catgets( __cat, __setid, __msgid, dfault );
- }
|