about summary refs log tree commit diff
path: root/src/stdio/vfprintf.c
Commit message (Expand)AuthorAgeFilesLines
* 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