about summary refs log tree commit diff
path: root/src/locale
Commit message (Expand)AuthorAgeFilesLines
* use libc-internal malloc for newlocale/freelocaleRich Felker2020-12-092-0/+10
* drop use of pthread_once in newlocaleRich Felker2020-12-091-9/+7
* lift locale lock out of internal __get_localeRich Felker2020-12-093-18/+17
* lift child restrictions after multi-threaded forkRich Felker2020-11-112-2/+8
* convert malloc use under libc-internal locks to use internal allocatorRich Felker2020-11-112-0/+11
* fix MUSL_LOCPATH searchRich Felker2020-08-221-1/+1
* fix accidentlly-external cmp symbol introduced with catgetsRich Felker2019-08-131-1/+1
* add non-stub implementation of catgets localization functionsRich Felker2019-08-073-3/+114
* locale: ensure dcngettext() preserves errnoA. Wilcox2019-02-071-0/+3
* fix regression in setlocale for LC_ALL with per-category settingRich Felker2018-11-021-1/+1
* make the default locale (& a variant) failure-free cases for newlocaleRich Felker2018-10-221-1/+20
* simplify newlocale and allow failure for explicit locale namesRich Felker2018-10-221-23/+14
* adapt setlocale to support possibility of failureRich Felker2018-10-201-12/+20
* drop lazy plural forms init in dcngettextRich Felker2018-09-141-18/+17
* split internal lock API out of libc.h, creating lock.hRich Felker2018-09-123-2/+3
* reduce spurious inclusion of libc.hRich Felker2018-09-1210-11/+0
* apply hidden visibility to various remaining internal interfacesRich Felker2018-09-121-1/+3
* overhaul internally-public declarations using wrapper headersRich Felker2018-09-123-9/+2
* add internal header for declaring __pleval function (used by gettext)Rich Felker2018-09-123-1/+8
* move __loc_is_allocated declaration to locale_impl.hRich Felker2018-09-121-2/+0
* 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