Age | Commit message (Expand) | Author | Lines |
2018年09月12日 | reduce spurious inclusion of libc.h | Rich Felker | -0/+1 |
2018年08月29日 | make vfprintf set stream orientation even for zero-length output | Rich Felker | -1/+2 |
2018年08月29日 | re-fix vfprintf temporary buffer logic | Rich Felker | -2/+2 |
2018年08月23日 | fix printf precision specifier for hex floats on non-ld80 archs | Rich Felker | -0/+1 |
2018年01月10日 | fix printf alt-form octal with value 0 and no explicit precision | Rich Felker | -2/+2 |
2017年07月04日 | remove ineffective compiler assist from printf | Alexander Monakov | -2/+0 |
2017年04月22日 | remove va_arg hacks in printf core with undefined behavior | Rich Felker | -26/+1 |
2016年10月20日 | fix float formatting of some exact halfway cases | Szabolcs Nagy | -1/+2 |
2016年10月20日 | fix integer overflows and uncaught EOVERFLOW in printf core | Rich Felker | -22/+50 |
2016年10月19日 | fix integer overflow in float printf needed-precision computation | Rich Felker | -1/+1 |
2016年09月16日 | fix printf regression with alt-form octal, zero flag, and field width | Rich Felker | -1/+1 |
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.0 v0.5.0 | Rich Felker | -0/+640 |