about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* fix some bugs in scanf %[ handling detected while writing the wide versionRich Felker2012-04-171-4/+4
* introduce new wide scanf code and remove the last remnants of old scanfRich Felker2012-04-174-524/+312
* avoid depending on POSIX symbol in code used from plain C functionsRich Felker2012-04-171-1/+3
* avoid null pointer dereference on %*p fields in scanfRich Felker2012-04-171-1/+1
* also ensure that write buffer is bounded when __stdio_write returnsRich Felker2012-04-171-0/+1
* fix buffer overflow in vfprintf on long writes to unbuffered filesRich Felker2012-04-171-1/+2
* fix %lf, etc. with printfRich Felker2012-04-161-0/+2
* better description for errno==0Rich Felker2012-04-161-1/+1
* implement wcstod and familyRich Felker2012-04-161-0/+61
* avoid hitting eof in wcstolRich Felker2012-04-161-2/+3
* use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker2012-04-1614-405/+120
* new scanf implementation and corresponding integer parser/converterRich Felker2012-04-166-30/+450
* fix buggy limiter handling in shgetcRich Felker2012-04-161-4/+3
* wordexp must set the we_offs entries of we_wordv to null pointersRich Felker2012-04-161-0/+4
* fix crash in wordfree if we_offs is not initialized by the callerRich Felker2012-04-161-0/+2
* fix broken shgetc limiter logic (wasn't working)Rich Felker2012-04-162-2/+5
* floatscan: fix incorrect count of leading nonzero digitsRich Felker2012-04-161-1/+1
* fix signedness error handling invalid multibyte sequences in regexecRich Felker2012-04-141-2/+2
* remove invalid code from TRERich Felker2012-04-131-14/+0
* fix broken regerror (typo) and missing messageRich Felker2012-04-131-2/+2
* use fast version of the int reading code for the high-order digits tooRich Felker2012-04-131-3/+13
* use macros instead of inline functions in shgetc.hRich Felker2012-04-131-20/+4
* fix spurious overflows in strtoull with small basesRich Felker2012-04-131-7/+3
* remove magic numbers from floatscanRich Felker2012-04-121-5/+5
* optimize more integer cases in floatscan; comment the whole procedureRich Felker2012-04-121-8/+27
* revert invalid optimization in floatscanRich Felker2012-04-111-2/+2
* fix stupid typo in floatscan that caused excess rounding of some valuesRich Felker2012-04-111-1/+1
* Merge remote branch 'nsz/master'Rich Felker2012-04-112-5/+6
|\
| * math: fix x86 asin accuracynsz2012-04-042-5/+6
* | optimize floatscan downscaler to skip results that won't be neededRich Felker2012-04-111-2/+3
* | simplify/debloat radix point alignment code in floatscanRich Felker2012-04-111-9/+4
* | optimize floatscan: avoid excessive upscalingRich Felker2012-04-111-27/+27
* | fix incorrect initial count in shgetc when data is already bufferedRich Felker2012-04-111-1/+1
* | fix bug parsing lone zero followed by junk, and hex float over-readingRich Felker2012-04-111-6/+5
* | fix float scanning of certain values ending in zerosRich Felker2012-04-101-1/+3
* | fix potential overflow in exponent readingRich Felker2012-04-101-1/+1
* | set errno properly when parsing floating pointRich Felker2012-04-101-4/+21
* | add "scan helper getc" and rework strtod, etc. to use itRich Felker2012-04-106-75/+115
* | unify strtof/strtod/strtold wrappers and fix initial whitespace issueRich Felker2012-04-103-34/+21
* | new floating point parser/converterRich Felker2012-04-105-94/+477
|/
* improve name lookup performance in corner casesRich Felker2012-04-012-2/+2
* math: minor cleanups in ceil and floornsz2012-03-295-10/+7
* math: remove x86 modf asmnsz2012-03-294-111/+0
* math: rewrite modf.c and clean up modff.cnsz2012-03-292-72/+45
* math: fix modfl.c bugnsz2012-03-281-1/+1
* math: fix a regression in powl and do some cleanupsnsz2012-03-271-12/+11
* math: add dummy tgamma and tgammaf implementationsnsz2012-03-272-0/+32
* math: remove comment about aliasing lgamma as gammansz2012-03-273-8/+4
* math: fix typo in i386 remquof and remquol asmnsz2012-03-271-5/+5
* Merge remote branch 'nsz/master'Rich Felker2012-03-252-15/+6
|\