summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2012-04-23sync case mappings with unicode 6.1Rich Felker-8/+30
2012-04-23optimize iswprintRich Felker-3/+12
2012-04-23fix spurious punct class for some surrogate codepoints (invalid)Rich Felker-59/+56
2012-04-23destubify iswalpha and update iswpunct to unicode 6.1Rich Felker-135/+252
2012-04-23make dlerror produce informative resultsRich Felker-4/+15
2012-04-22implement getusershell, etc. legacy functionsRich Felker-0/+33
2012-04-22remove redundant (unmaintained) check in floatscanRich Felker-3/+3
2012-04-22add getresuid and getresgid syscall wrappersRich Felker-0/+16
2012-04-21fix major breakage in iconv, bogus rejecting of dest charsetsRich Felker-1/+1
2012-04-21make floatscan correctly set errno for overflow/underflowRich Felker-4/+16
2012-04-21skip leading zeros even after decimal point in floatscanRich Felker-4/+9
2012-04-21fix overread (consuming an extra byte) scanning NANRich Felker-1/+1
2012-04-21fix broken sysconf when correct value is -1Rich Felker-1/+1
2012-04-19further fixes to leading space issue (forgot the wide versions)Rich Felker-5/+9
2012-04-19fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker-10/+9
2012-04-18legacy junk compatibility grab-bagRich Felker-0/+2
2012-04-18fix typo in exponent reading code or floatsRich Felker-1/+1
2012-04-17fix wide scanf's handling of input failure on %c, and simplify %[Rich Felker-5/+6
2012-04-17fix failure to distinguish input/match failure in wide %[ scanfRich Felker-2/+4
2012-04-17fix over-read in %ls with non-wide scanfRich Felker-0/+1
2012-04-17fix broken %s and %[ with no width specifier in wide scanfRich Felker-3/+7
2012-04-17fix failure to read infinity in scanfRich Felker-3/+4
2012-04-17fix failure of int parser to unget an initial mismatching characterRich Felker-0/+1
2012-04-17make wide scanf %[ respect widthRich Felker-2/+3
2012-04-17fix wide scanf to respect field width for stringsRich Felker-4/+7
2012-04-17fix some bugs in scanf %[ handling detected while writing the wide versionRich Felker-4/+4
2012-04-17introduce new wide scanf code and remove the last remnants of old scanfRich Felker-524/+312
2012-04-17avoid depending on POSIX symbol in code used from plain C functionsRich Felker-1/+3
2012-04-17avoid null pointer dereference on %*p fields in scanfRich Felker-1/+1
2012-04-17also ensure that write buffer is bounded when __stdio_write returnsRich Felker-0/+1
2012-04-17fix buffer overflow in vfprintf on long writes to unbuffered filesRich Felker-1/+2
2012-04-16fix %lf, etc. with printfRich Felker-0/+2
2012-04-16better description for errno==0Rich Felker-1/+1
2012-04-16implement wcstod and familyRich Felker-0/+61
2012-04-16avoid hitting eof in wcstolRich Felker-2/+3
2012-04-16use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker-405/+120
2012-04-16new scanf implementation and corresponding integer parser/converterRich Felker-30/+450
2012-04-16fix buggy limiter handling in shgetcRich Felker-4/+3
2012-04-16wordexp must set the we_offs entries of we_wordv to null pointersRich Felker-0/+4
2012-04-16fix crash in wordfree if we_offs is not initialized by the callerRich Felker-0/+2
2012-04-16fix broken shgetc limiter logic (wasn't working)Rich Felker-2/+5
2012-04-16floatscan: fix incorrect count of leading nonzero digitsRich Felker-1/+1
2012-04-14fix signedness error handling invalid multibyte sequences in regexecRich Felker-2/+2
2012-04-13remove invalid code from TRERich Felker-14/+0
2012-04-13fix broken regerror (typo) and missing messageRich Felker-2/+2
2012-04-13use fast version of the int reading code for the high-order digits tooRich Felker-3/+13
2012-04-13use macros instead of inline functions in shgetc.hRich Felker-20/+4
2012-04-13fix spurious overflows in strtoull with small basesRich Felker-7/+3
2012-04-12remove magic numbers from floatscanRich Felker-5/+5
2012-04-12optimize more integer cases in floatscan; comment the whole procedureRich Felker-8/+27