about summary refs log tree commit diff
path: root/src/locale
Commit message (Expand)AuthorAgeFilesLines
* fix output size handling for multi-unicode-char big5-hkscs charactersRich Felker2018-06-011-5/+13
* fix iconv mapping of big5-hkscs characters that map to two unicode charsRich Felker2018-06-011-1/+1
* fix iconv conversion to UTF-32 with implicit (big) endiannessWill Dietz2018-05-091-0/+2
* fix iconv buffer overflow converting to legacy JIS-based encodingsWill Dietz2018-05-091-0/+1
* fix nl_langinfo_l(CODESET, loc) reporting wrong locale's valueRich Felker2018-03-071-1/+1
* revise the definition of multiple basic locks in the codeJens Gustedt2018-01-093-3/+3
* fix iconv output of surrogate pairs in ucs2Rich Felker2017-12-181-1/+1
* add support for BOM-determined-endian UCS2, UTF-16, and UTF-32 to iconvRich Felker2017-12-181-3/+40
* add cp866 (dos cyrillic) to iconvRich Felker2017-12-181-0/+12
* add ibm1047 codepage (ebcdic representation of latin1) to iconvRich Felker2017-12-121-0/+20
* add reverse iconv mappings for JIS-based encodingsRich Felker2017-11-142-1/+612
* generalize iconv framework for 8-bit codepagesRich Felker2017-11-133-246/+273
* reformat cjk iconv tables to be diff-friendly, match tool outputRich Felker2017-11-113-2755/+2808
* add iso-2022-jp support (decoding only) to iconvRich Felker2017-11-101-2/+45
* add iconv framework for decoding stateful encodingsRich Felker2017-11-102-3/+24
* simplify/optimize iconv utf-8 caseRich Felker2017-11-101-4/+3
* handle ascii range individually in each iconv caseRich Felker2017-11-101-2/+10
* move iconv_close to its own translation unitRich Felker2017-11-102-5/+6
* refactor iconv conversion descriptor encoding/decodingRich Felker2017-11-101-6/+20
* add _NL_LOCALE_NAME extension to nl_langinfoRich Felker2017-07-311-0/+4
* fix missing volatile qualifier on lock in __get_localeJens Gustedt2017-07-041-1/+1
* fix iconv conversions for iso88592-iso885916Bartosz Brachaczek2017-06-201-1/+1
* catopen: set errno to EOPNOTSUPPA. Wilcox2017-06-141-0/+2
* fix iconv conversions to legacy 8bit encodingsRich Felker2017-05-271-9/+12
* search locale name variants for gettext translationsRich Felker2017-03-211-32/+55
* make setlocale return a single name for LC_ALL if all categories matchRich Felker2017-03-211-2/+5
* avoid unbounded strlen in gettext functionsRich Felker2017-01-291-3/+3
* fix use of uninitialized pointer in gettext coreRich Felker2017-01-291-2/+2
* fix bindtextdomain logic error deactivating other domainsRich Felker2017-01-291-1/+1
* fix return value of nl_langinfo for invalid item argumentsRich Felker2015-11-101-5/+5
* make nl_langinfo(CODESET) always return "ASCII" in byte-based C localeRich Felker2015-10-011-1/+1
* fix localeconv field value for unavailable valuesRich Felker2015-09-241-14/+15
* fix breakage in nl_langinfo from previous commitRich Felker2015-09-091-1/+1
* make nl_langinfo(CODESET) always return "UTF-8"Rich Felker2015-09-091-2/+1
* byte-based C locale, phase 2: stdio and iconv (multibyte callers)Rich Felker2015-06-161-0/+6
* byte-based C locale, phase 1: multibyte character handling functionsRich Felker2015-06-161-1/+2
* make static C and C.UTF-8 locales available outside of newlocaleRich Felker2015-06-063-21/+21
* fix uselocale((locale_t)0) not to modify localeTimo Teräs2015-06-051-3/+1
* implement fail-safe static locales for newlocaleRich Felker2015-05-273-13/+46
* rename internal locale file handling locale mapsRich Felker2015-05-271-0/+0
* overhaul locale internals to treat categories roughly uniformlyRich Felker2015-05-276-129/+107
* replace atomics with locks in locale-setting codeRich Felker2015-05-272-32/+51
* remove outdated and misleading comment in iconv.cRich Felker2015-05-211-6/+0
* in iconv_open, accept "CHAR" and "" as aliases for "UTF-8"Rich Felker2015-05-211-1/+2
* fix null pointer dereference in dcngettext under specific conditionsRich Felker2015-05-181-1/+1
* eliminate costly tricks to avoid TLS access for current locale stateRich Felker2015-05-162-15/+2
* fix duplocale clobbering of new locale struct with memcpy of oldRich Felker2015-04-211-1/+2
* make all objects used with atomic operations volatileRich Felker2015-03-032-5/+5
* fix non-static dummy function that slipped in with locale implementationRich Felker2014-09-061-1/+1
* add inline isspace in ctype.h as an optimizationSzabolcs Nagy2014-08-131-8/+0