Age | Commit message (Expand) | Author | Files | Lines |
2012-11-08 | clean up stdio_impl.h | Rich Felker | 1 | -0/+1 |
2012-10-21 | accept "nan(n-char-sequence)" in strtod/scanf functions | Rich Felker | 1 | -1/+19 |
2012-08-17 | fix float parsing logic for long decimal expansions | Rich Felker | 1 | -1/+1 |
2012-06-08 | fix scanning of "-0x" pseudo-hex float (must give negative zero) | Rich Felker | 1 | -1/+1 |
2012-04-30 | fix off-by-one error that caused uninitialized memory read in floatscan | Rich Felker | 1 | -1/+1 |
2012-04-22 | remove redundant (unmaintained) check in floatscan | Rich Felker | 1 | -3/+3 |
2012-04-21 | make floatscan correctly set errno for overflow/underflow | Rich Felker | 1 | -4/+16 |
2012-04-21 | skip leading zeros even after decimal point in floatscan | Rich Felker | 1 | -4/+9 |
2012-04-21 | fix overread (consuming an extra byte) scanning NAN | Rich Felker | 1 | -1/+1 |
2012-04-19 | fix really bad breakage in strtol, etc.: failure to accept leading spaces | Rich Felker | 1 | -2/+3 |
2012-04-18 | fix typo in exponent reading code or floats | Rich Felker | 1 | -1/+1 |
2012-04-17 | fix failure to read infinity in scanf | Rich Felker | 1 | -3/+4 |
2012-04-16 | floatscan: fix incorrect count of leading nonzero digits | Rich Felker | 1 | -1/+1 |
2012-04-12 | remove magic numbers from floatscan | Rich Felker | 1 | -5/+5 |
2012-04-12 | optimize more integer cases in floatscan; comment the whole procedure | Rich Felker | 1 | -8/+27 |
2012-04-11 | revert invalid optimization in floatscan | Rich Felker | 1 | -2/+2 |
2012-04-11 | fix stupid typo in floatscan that caused excess rounding of some values | Rich Felker | 1 | -1/+1 |
2012-04-11 | optimize floatscan downscaler to skip results that won't be needed | Rich Felker | 1 | -2/+3 |
2012-04-11 | simplify/debloat radix point alignment code in floatscan | Rich Felker | 1 | -9/+4 |
2012-04-11 | optimize floatscan: avoid excessive upscaling | Rich Felker | 1 | -27/+27 |
2012-04-11 | fix bug parsing lone zero followed by junk, and hex float over-reading | Rich Felker | 1 | -6/+5 |
2012-04-10 | fix float scanning of certain values ending in zeros | Rich Felker | 1 | -1/+3 |
2012-04-10 | fix potential overflow in exponent reading | Rich Felker | 1 | -1/+1 |
2012-04-10 | set errno properly when parsing floating point | Rich Felker | 1 | -4/+21 |
2012-04-10 | add "scan helper getc" and rework strtod, etc. to use it | Rich Felker | 1 | -72/+59 |
2012-04-10 | new floating point parser/converter | Rich Felker | 1 | -0/+438 |