summaryrefslogtreecommitdiff
path: root/src/locale
AgeCommit message (Expand)AuthorLines
2019-02-07locale: ensure dcngettext() preserves errnoA. Wilcox-0/+3
2018-11-02fix regression in setlocale for LC_ALL with per-category settingRich Felker-1/+1
2018-10-22make the default locale (& a variant) failure-free cases for newlocaleRich Felker-1/+20
2018-10-22simplify newlocale and allow failure for explicit locale namesRich Felker-23/+14
2018-10-20adapt setlocale to support possibility of failureRich Felker-12/+20
2018-09-14drop lazy plural forms init in dcngettextRich Felker-18/+17
2018-09-12split internal lock API out of libc.h, creating lock.hRich Felker-2/+3
2018-09-12reduce spurious inclusion of libc.hRich Felker-11/+0
2018-09-12apply hidden visibility to various remaining internal interfacesRich Felker-1/+3
2018-09-12overhaul internally-public declarations using wrapper headersRich Felker-9/+2
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