about summary refs log tree commit diff
path: root/src/internal/floatscan.c
Commit message (Expand)AuthorAgeFilesLines
* add IEEE binary128 long double support to floatscanSzabolcs Nagy2015-02-091-1/+9
* clean up stdio_impl.hRich Felker2012-11-081-0/+1
* accept "nan(n-char-sequence)" in strtod/scanf functionsRich Felker2012-10-211-1/+19
* fix float parsing logic for long decimal expansionsRich Felker2012-08-171-1/+1
* fix scanning of "-0x" pseudo-hex float (must give negative zero)Rich Felker2012-06-081-1/+1
* fix off-by-one error that caused uninitialized memory read in floatscanRich Felker2012-04-301-1/+1
* remove redundant (unmaintained) check in floatscanRich Felker2012-04-221-3/+3
* make floatscan correctly set errno for overflow/underflowRich Felker2012-04-211-4/+16
* skip leading zeros even after decimal point in floatscanRich Felker2012-04-211-4/+9
* fix overread (consuming an extra byte) scanning NANRich Felker2012-04-211-1/+1
* fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker2012-04-191-2/+3
* fix typo in exponent reading code or floatsRich Felker2012-04-181-1/+1
* fix failure to read infinity in scanfRich Felker2012-04-171-3/+4
* floatscan: fix incorrect count of leading nonzero digitsRich Felker2012-04-161-1/+1
* 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
* 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 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-101-72/+59
* new floating point parser/converterRich Felker2012-04-101-0/+438