summaryrefslogtreecommitdiff
path: root/src/locale
AgeCommit message (Expand)AuthorLines
2018-09-12add internal header for declaring __pleval function (used by gettext)Rich Felker-1/+8
2018-09-12move __loc_is_allocated declaration to locale_impl.hRich Felker-2/+0
2018-06-01fix output size handling for multi-unicode-char big5-hkscs charactersRich Felker-5/+13
2018-06-01fix iconv mapping of big5-hkscs characters that map to two unicode charsRich Felker-1/+1
2018-05-09fix iconv conversion to UTF-32 with implicit (big) endiannessWill Dietz-0/+2
2018-05-09fix iconv buffer overflow converting to legacy JIS-based encodingsWill Dietz-0/+1
2018-03-07fix nl_langinfo_l(CODESET, loc) reporting wrong locale's valueRich Felker-1/+1
2018-01-09revise the definition of multiple basic locks in the codeJens Gustedt-3/+3
2017-12-18fix iconv output of surrogate pairs in ucs2Rich Felker-1/+1
2017-12-18add support for BOM-determined-endian UCS2, UTF-16, and UTF-32 to iconvRich Felker-3/+40
2017-12-18add cp866 (dos cyrillic) to iconvRich Felker-0/+12
2017-12-12add ibm1047 codepage (ebcdic representation of latin1) to iconvRich Felker-0/+20
2017-11-14add reverse iconv mappings for JIS-based encodingsRich Felker-1/+612
2017-11-13generalize iconv framework for 8-bit codepagesRich Felker-246/+273
2017-11-11reformat cjk iconv tables to be diff-friendly, match tool outputRich Felker-2755/+2808
2017-11-10add iso-2022-jp support (decoding only) to iconvRich Felker-2/+45
2017-11-10add iconv framework for decoding stateful encodingsRich Felker-3/+24
2017-11-10simplify/optimize iconv utf-8 caseRich Felker-4/+3
2017-11-10handle ascii range individually in each iconv caseRich Felker-2/+10
2017-11-10move iconv_close to its own translation unitRich Felker-5/+6
2017-11-10refactor iconv conversion descriptor encoding/decodingRich Felker-6/+20
2017-07-31add _NL_LOCALE_NAME extension to nl_langinfoRich Felker-0/+4
2017-07-04fix missing volatile qualifier on lock in __get_localeJens Gustedt-1/+1
2017-06-20fix iconv conversions for iso88592-iso885916Bartosz Brachaczek-1/+1
2017-06-14catopen: set errno to EOPNOTSUPPA. Wilcox-0/+2
2017-05-27fix iconv conversions to legacy 8bit encodingsRich Felker-9/+12
2017-03-21search locale name variants for gettext translationsRich Felker-32/+55
2017-03-21make setlocale return a single name for LC_ALL if all categories matchRich Felker-2/+5
2017-01-29avoid unbounded strlen in gettext functionsRich Felker-3/+3
2017-01-29fix use of uninitialized pointer in gettext coreRich Felker-2/+2
2017-01-29fix bindtextdomain logic error deactivating other domainsRich Felker-1/+1
2015-11-10fix return value of nl_langinfo for invalid item argumentsRich Felker-5/+5
2015-10-01make nl_langinfo(CODESET) always return "ASCII" in byte-based C localeRich Felker-1/+1
2015-09-24fix localeconv field value for unavailable valuesRich Felker-14/+15
2015-09-09fix breakage in nl_langinfo from previous commitRich Felker-1/+1
2015-09-09make nl_langinfo(CODESET) always return "UTF-8"Rich Felker-2/+1
2015-06-16byte-based C locale, phase 2: stdio and iconv (multibyte callers)Rich Felker-0/+6
2015-06-16byte-based C locale, phase 1: multibyte character handling functionsRich Felker-1/+2
2015-06-06make static C and C.UTF-8 locales available outside of newlocaleRich Felker-21/+21
2015-06-05fix uselocale((locale_t)0) not to modify localeTimo Teräs-3/+1
2015-05-27implement fail-safe static locales for newlocaleRich Felker-13/+46
2015-05-27rename internal locale file handling locale mapsRich Felker-0/+0
2015-05-27overhaul locale internals to treat categories roughly uniformlyRich Felker-129/+107
2015-05-27replace atomics with locks in locale-setting codeRich Felker-32/+51
2015-05-21remove outdated and misleading comment in iconv.cRich Felker-6/+0
2015-05-21in iconv_open, accept "CHAR" and "" as aliases for "UTF-8"Rich Felker-1/+2
2015-05-18fix null pointer dereference in dcngettext under specific conditionsRich Felker-1/+1
2015-05-16eliminate costly tricks to avoid TLS access for current locale stateRich Felker-15/+2
2015-04-21fix duplocale clobbering of new locale struct with memcpy of oldRich Felker-1/+2
2015-03-03make all objects used with atomic operations volatileRich Felker-5/+5