about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* update case mappings to unicode 10.0Rich Felker2017-12-181-2/+41
* update ctype tables to unicode 10.0Rich Felker2017-12-184-220/+305
* reformat ctype tables to be diff-friendly, match tool outputRich Felker2017-12-184-263/+276
* use the name UTC instead of GMT for UTC timezoneNatanael Copa2017-12-143-12/+12
* fix sysconf for infinite rlimitsNatanael Copa2017-12-141-0/+2
* fix data race in at_quick_exitRich Felker2017-12-141-3/+4
* add ibm1047 codepage (ebcdic representation of latin1) to iconvRich Felker2017-12-121-0/+20
* implement strftime padding specifier extensionsTimo Teräs2017-12-111-8/+14
* implement the fopencookie extension to stdioWilliam Pitcock2017-12-061-0/+138
* make fgetwc handling of encoding errors consistent with/without bufferRich Felker2017-11-201-14/+14
* fix treatment by fgetws of encoding errors as eofRich Felker2017-11-201-1/+6
* fix fgetwc when decoding a character that crosses buffer boundarySzabolcs Nagy2017-11-181-0/+1
* 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
* prevent fork's errno from being clobbered by atfork handlersBobby Bingham2017-11-101-3/+3
* 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
* fix getaddrinfo error code for non-numeric service with AI_NUMERICSERVA. Wilcox2017-11-091-1/+1
* fix mismatched type of __pthread_tsd_run_dtors weak definitionRich Felker2017-11-091-2/+2
* adjust posix_spawn dup2 action behavior to match future requirementsRich Felker2017-11-051-8/+12
* fix regression in glob with literal . or .. path componentRich Felker2017-10-211-3/+5
* posix_spawn: use larger stack to cover worst-case in execvpeWill Dietz2017-10-191-1/+1
* in dns parsing callback, enforce MAXADDRS to preclude overflowRich Felker2017-10-181-0/+1
* fix incorrect base name offset from nftw when pathname ends in slash(es)Rich Felker2017-10-131-3/+9
* fix read-after-free type error in pthread_detachRich Felker2017-10-131-1/+2
* math: rewrite fma with mostly int arithmeticsSzabolcs Nagy2017-10-131-431/+154
* for executing init array functions, use function type with prototypeRich Felker2017-10-131-1/+1
* fix access by setjmp and longjmp to __hwcap on arm built as thumb2Rich Felker2017-10-132-0/+2
* work around incorrect EPERM from mmap syscallRich Felker2017-09-061-2/+7
* fix glob descent into . and .. with GLOB_PERIODRich Felker2017-09-061-0/+4
* don't treat numeric port strings as servent records in getservby*()Rich Felker2017-09-062-0/+10
* fix signal masking race in pthread_create with priority attributesRich Felker2017-09-061-2/+7
* handle whitespace before %% in scanfBartosz Brachaczek2017-09-042-5/+13
* fix OOB reads in Xbyte_memmemAlexander Monakov2017-09-041-9/+9
* free allocations in clearenvAlexander Monakov2017-09-041-2/+6
* overhaul environment functionsAlexander Monakov2017-09-044-81/+86
* fix erroneous acceptance of f4 9x xx xx code sequences by utf-8 decoderRich Felker2017-09-011-1/+1
* fix erroneous stop before input limit in mbsnrtowcs and wcsnrtombsRich Felker2017-08-312-2/+6
* add a_clz_64 helper functionSzabolcs Nagy2017-08-291-0/+21
* fix undefined behavior in memset due to missing sequence pointsRich Felker2017-08-291-4/+8
* __init_libc: add fallbacks for __progname setupAlexander Monakov2017-08-291-4/+4
* fix unsynchronized access to FILE structure in fflush(0)Rich Felker2017-08-291-1/+4