about summary refs log tree commit diff
path: root/src/stdio/vfprintf.c
Commit message (Expand)AuthorAgeFilesLines
* don't suppress sign output for NANs in printfRich Felker2014-12-181-1/+1
* correctly handle write errors encountered by printf-family functionsRich Felker2014-12-171-1/+6
* fix behavior of printf with alt-form octal, zero precision, zero valueRich Felker2014-11-151-1/+1
* use cleaner code for handling float rounding in vfprintfSzabolcs Nagy2014-05-301-3/+1
* fix printf rounding with %g for some corner case midpointsRich Felker2014-04-071-1/+1
* fix failure of printf %g to strip trailing zeros in some casesRich Felker2014-04-071-1/+1
* fix carry into uninitialized slots during printf floating point roundingRich Felker2014-04-071-1/+1
* fix incorrect rounding in printf floating point corner casesRich Felker2014-03-091-2/+2
* fix buffer overflow in printf formatting of denormals with low bit setRich Felker2014-03-091-1/+2
* minor vfprintf and vfwprintf changes to please static code analyzersSzabolcs Nagy2013-10-071-2/+5
* protect against long double type mismatches (mainly powerpc for now)Rich Felker2013-08-021-0/+7
* clean up stdio_impl.hRich Felker2012-11-081-0/+9
* avoid raising spurious division-by-zero exception in printfRich Felker2012-10-181-1/+1
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-061-1/+1
* minor but worthwhile optimization in printf: avoid expensive strspnRich Felker2012-08-101-4/+2
* fix another oob pointer arithmetic issue in printf floating pointRich Felker2012-06-201-1/+1
* fix pointer overflow bug in floating point printfRich Felker2012-06-191-3/+3
* fix %ls breakage in last printf fixRich Felker2012-06-081-2/+2
* fix printf %ls with precision limit over-read issueRich Felker2012-06-081-2/+2
* 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
* don't crash on null strings in printfRich Felker2011-09-281-1/+1
* printf: "if a precision is specified, the '0' flag shall be ignored."Rich Felker2011-07-041-1/+1
* zero precision with zero value should not inhibit prefix/width printingRich Felker2011-07-041-1/+4
* printf("%#x",0) should print 0 not 0x0Rich Felker2011-07-041-1/+1
* fix the last known rounding bug in floating point printingRich Felker2011-05-111-3/+4
* fix printf("%.9g", 1.1) and similar not dropping trailing zerosRich Felker2011-04-121-1/+3
* fix overflow in printf %N$ argument handlingRich Felker2011-04-051-2/+2
* fix various floating point rounding and formatting errors in *printfRich Felker2011-04-051-17/+25
* use a local temp buffer for unbuffered streams in vfprintfRich Felker2011-04-041-0/+13
* major stdio overhaul, using readv/writev, plus other changesRich Felker2011-03-281-1/+1
* fix all implicit conversion between signed/unsigned pointersRich Felker2011-03-251-1/+1
* fix %n specifier, again. this time it was storing the wrong value.Rich Felker2011-02-201-7/+7
* fix printf %n specifier - missing breaks had it clobbering memoryRich Felker2011-02-161-7/+7
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-121-0/+640