Age | Commit message (Expand) | Author | Lines |
2014-12-18 | don't suppress sign output for NANs in printf | Rich Felker | -1/+1 |
2014-12-17 | correctly handle write errors encountered by printf-family functions | Rich Felker | -1/+6 |
2014-11-15 | fix behavior of printf with alt-form octal, zero precision, zero value | Rich Felker | -1/+1 |
2014-05-30 | use cleaner code for handling float rounding in vfprintf | Szabolcs Nagy | -3/+1 |
2014-04-07 | fix printf rounding with %g for some corner case midpoints | Rich Felker | -1/+1 |
2014-04-07 | fix failure of printf %g to strip trailing zeros in some cases | Rich Felker | -1/+1 |
2014-04-07 | fix carry into uninitialized slots during printf floating point rounding | Rich Felker | -1/+1 |
2014-03-09 | fix incorrect rounding in printf floating point corner cases | Rich Felker | -2/+2 |
2014-03-09 | fix buffer overflow in printf formatting of denormals with low bit set | Rich Felker | -1/+2 |
2013-10-07 | minor vfprintf and vfwprintf changes to please static code analyzers | Szabolcs Nagy | -2/+5 |
2013-08-02 | protect against long double type mismatches (mainly powerpc for now) | Rich Felker | -0/+7 |
2012-11-08 | clean up stdio_impl.h | Rich Felker | -0/+9 |
2012-10-18 | avoid raising spurious division-by-zero exception in printf | Rich Felker | -1/+1 |
2012-09-06 | use restrict everywhere it's required by c99 and/or posix 2008 | Rich Felker | -1/+1 |
2012-08-10 | minor but worthwhile optimization in printf: avoid expensive strspn | Rich Felker | -4/+2 |
2012-06-20 | fix another oob pointer arithmetic issue in printf floating point | Rich Felker | -1/+1 |
2012-06-19 | fix pointer overflow bug in floating point printf | Rich Felker | -3/+3 |
2012-06-08 | fix %ls breakage in last printf fix | Rich Felker | -2/+2 |
2012-06-08 | fix printf %ls with precision limit over-read issue | Rich Felker | -2/+2 |
2012-04-17 | fix buffer overflow in vfprintf on long writes to unbuffered files | Rich Felker | -1/+2 |
2012-04-16 | fix %lf, etc. with printf | Rich Felker | -0/+2 |
2011-09-28 | don't crash on null strings in printf | Rich Felker | -1/+1 |
2011-07-04 | printf: "if a precision is specified, the '0' flag shall be ignored." | Rich Felker | -1/+1 |
2011-07-04 | zero precision with zero value should not inhibit prefix/width printing | Rich Felker | -1/+4 |
2011-07-04 | printf("%#x",0) should print 0 not 0x0 | Rich Felker | -1/+1 |
2011-05-11 | fix the last known rounding bug in floating point printing | Rich Felker | -3/+4 |
2011-04-12 | fix printf("%.9g", 1.1) and similar not dropping trailing zeros | Rich Felker | -1/+3 |
2011-04-05 | fix overflow in printf %N$ argument handling | Rich Felker | -2/+2 |
2011-04-05 | fix various floating point rounding and formatting errors in *printf | Rich Felker | -17/+25 |
2011-04-04 | use a local temp buffer for unbuffered streams in vfprintf | Rich Felker | -0/+13 |
2011-03-28 | major stdio overhaul, using readv/writev, plus other changes | Rich Felker | -1/+1 |
2011-03-25 | fix all implicit conversion between signed/unsigned pointers | Rich Felker | -1/+1 |
2011-02-20 | fix %n specifier, again. this time it was storing the wrong value. | Rich Felker | -7/+7 |
2011-02-16 | fix printf %n specifier - missing breaks had it clobbering memory | Rich Felker | -7/+7 |
2011-02-12 | initial check-in, version 0.5.0v0.5.0 | Rich Felker | -0/+640 |