summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/vfprintf.c
Commit message (Expand)AuthorAgeFilesLines
* If the size passed to {,v}s{w,n}printf is larger than INT_MAX+1das2012-04-211-0/+3
* Implement xlocale APIs from Darwin, mainly for use by libc++. This adds atheraven2011-11-201-25/+37
* - Use an initializer macro to initialize fields in 'fake' FILE objects usedjhb2010-03-111-1/+1
* Replace a dozen lines of code with a call to strnlen() / wcsnlen().das2009-02-281-16/+1
* Make sure %zd treats negative arguments properly on 32-bit platforms.das2009-02-281-1/+1
* Add support for multibyte thousands_sep encodings, e.g., U+066C.das2009-01-221-61/+104
* Add support for multibyte decimal_point encodings, e.g., U+066B.das2009-01-191-7/+9
* When f[w]printf() is called on an unbuffered file like stdout, itdas2009-01-171-7/+12
* Reduce code duplication by moving functions that are identical in bothdas2009-01-151-213/+0
* Convert the insidious macros that handle printf()'s buffering intodas2009-01-151-48/+16
* Consolidate some variable initializations. No substantive change.das2008-12-111-7/+7
* Move the xprintf hook to where it belongs; it shouldn't be in thedas2008-12-101-6/+4
* Correctly handle malloc() failure. While here, reduce the code size adas2008-06-291-3/+9
* Reduce the level of duplication between vfprintf() and vfwprintf()das2008-06-291-486/+1
* Begin de-spaghettifying the code that handles positional arguments.das2008-06-291-94/+153
* Next stage of stdio cleanup: Retire __sFILEX and merge the fields back intojhb2008-04-171-1/+2
* We should never zero-pad INF or NaN (yielding silly strings like "00inf")das2007-05-081-0/+1
* Per Regents of the University of Calfornia letter, remove advertisingimp2007-01-091-4/+0
* Fix rounding of 0xf for hex fp formats.das2007-01-031-2/+2
* Use correct type in va_arg argument.kan2006-09-211-1/+1
* Add missing #if's for NO_FLOATING_POINTphk2006-04-011-2/+4
* Add an extensible version of our *printf(3) implementation to libcphk2005-12-161-0/+7
* /* You're not supposed to hit this problem */phk2005-12-131-2/+2
* Speed up __wcsconv() (and hence the printf() %ls format):tjr2005-07-241-34/+30
* Be bug-for-bug compatible with the C standard with respect todas2005-04-161-2/+8
* Don't forget to va_end() the va_list we get from va_copy().des2004-08-261-0/+1
* The third operand of the conditional operator should have type void too.stefanf2004-06-081-1/+1
* Rename cantwrite() to prepwrite(). The latter is less confusing,das2004-06-081-1/+1
* - To make it easier to compile *printf() and *scanf() withoutdas2004-05-021-24/+16
* Use the correct size to allocate, copy and clear argument type tablestjr2004-04-221-6/+9
* Prepare to handle trivial state-dependent encodings. Full support fortjr2004-04-071-4/+12
* Implement __hdtoa() and __hldtoa() and enable printf() support for %adas2004-01-181-5/+2
* Fix some bugs affecting the %a and %A format specifiers. Sincedas2004-01-181-6/+16
* Pass NULL instead of a pointer to a zeroed mbstate_t object.tjr2003-11-051-9/+4
* %E-like %g and %G conversions should remove trailing zeroes unlessdas2003-04-191-0/+7
* Fix a bug where printf was erroneously printing a decimal point fordas2003-04-141-8/+10
* __wcsconv(): free(convbuf) before returning NULLache2003-04-071-2/+4
* Today just isn't my day. Remove some old commented out code that snuckdas2003-04-071-1/+1
* - %e conversions with precision 0 should not cause a decimal point todas2003-04-071-18/+22
* Rework the floating point code in printf(). Significant changes:das2003-04-051-151/+189
* Correct some buffer sizes.das2003-04-051-10/+16
* Kludge around a bug that results from printf() assuming thatdas2003-03-141-1/+1
* Replace our ancient dtoa/strtod implementation with the gdtoadas2003-03-121-9/+10
* Set the error bit on the stream if an encoding error occurs. Improvetjr2002-10-161-2/+6
* Add support for the XSI %C and %S formats, which are the same as %lctjr2002-10-161-0/+12
* Use the new va_copy macro to copy variable argument lists instead oftjr2002-09-241-1/+1
* Implement the %ls and %lc conversions for printing wide character stringstjr2002-09-191-6/+110
* Convert eight space indents to tabs in the "*" format handling code.tjr2002-09-161-43/+43
* Style: One space between "restrict" qualifier and "*".tjr2002-09-061-1/+1
* Print a '-' sign for negative zero. Tested withschweikh2002-08-271-7/+2
OpenPOWER on IntegriCloud