summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/vfprintf.c
Commit message (Expand)AuthorAgeFilesLines
* Add missing #if's for NO_FLOATING_POINTPoul-Henning Kamp2006-04-011-2/+4
* Add an extensible version of our *printf(3) implementation to libcPoul-Henning Kamp2005-12-161-0/+7
* /* You're not supposed to hit this problem */Poul-Henning Kamp2005-12-131-2/+2
* Speed up __wcsconv() (and hence the printf() %ls format):Tim J. Robbins2005-07-241-34/+30
* Be bug-for-bug compatible with the C standard with respect toDavid Schultz2005-04-161-2/+8
* Don't forget to va_end() the va_list we get from va_copy().Dag-Erling Smørgrav2004-08-261-0/+1
* The third operand of the conditional operator should have type void too.Stefan Farfeleder2004-06-081-1/+1
* Rename cantwrite() to prepwrite(). The latter is less confusing,David Schultz2004-06-081-1/+1
* - To make it easier to compile *printf() and *scanf() withoutDavid Schultz2004-05-021-24/+16
* Use the correct size to allocate, copy and clear argument type tablesTim J. Robbins2004-04-221-6/+9
* Prepare to handle trivial state-dependent encodings. Full support forTim J. Robbins2004-04-071-4/+12
* Implement __hdtoa() and __hldtoa() and enable printf() support for %aDavid Schultz2004-01-181-5/+2
* Fix some bugs affecting the %a and %A format specifiers. SinceDavid Schultz2004-01-181-6/+16
* Pass NULL instead of a pointer to a zeroed mbstate_t object.Tim J. Robbins2003-11-051-9/+4
* %E-like %g and %G conversions should remove trailing zeroes unlessDavid Schultz2003-04-191-0/+7
* Fix a bug where printf was erroneously printing a decimal point forDavid Schultz2003-04-141-8/+10
* __wcsconv(): free(convbuf) before returning NULLAndrey A. Chernov2003-04-071-2/+4
* Today just isn't my day. Remove some old commented out code that snuckDavid Schultz2003-04-071-1/+1
* - %e conversions with precision 0 should not cause a decimal point toDavid Schultz2003-04-071-18/+22
* Rework the floating point code in printf(). Significant changes:David Schultz2003-04-051-151/+189
* Correct some buffer sizes.David Schultz2003-04-051-10/+16
* Kludge around a bug that results from printf() assuming thatDavid Schultz2003-03-141-1/+1
* Replace our ancient dtoa/strtod implementation with the gdtoaDavid Schultz2003-03-121-9/+10
* Set the error bit on the stream if an encoding error occurs. ImproveTim J. Robbins2002-10-161-2/+6
* Add support for the XSI %C and %S formats, which are the same as %lcTim J. Robbins2002-10-161-0/+12
* Use the new va_copy macro to copy variable argument lists instead ofTim J. Robbins2002-09-241-1/+1
* Implement the %ls and %lc conversions for printing wide character stringsTim J. Robbins2002-09-191-6/+110
* Convert eight space indents to tabs in the "*" format handling code.Tim J. Robbins2002-09-161-43/+43
* Style: One space between "restrict" qualifier and "*".Tim J. Robbins2002-09-061-1/+1
* Print a '-' sign for negative zero. Tested withJens Schweikhardt2002-08-271-7/+2
* - For compliance with IEEE Std 1003.1-2001, add the 'restrict'Robert Drehmel2002-08-151-1/+2
* Basic support for wide character I/O: getwc(), fgetwc(), getwchar(),Tim J. Robbins2002-08-131-0/+1
* Assume __STDC__, remove non-__STDC__ code.Alfred Perlstein2002-05-281-4/+0
* Fix the style of the SCM ID's.David E. O'Brien2002-03-221-4/+2
* Remove multi-line __P() usage.David E. O'Brien2002-03-221-5/+5
* Remove __P() usage.David E. O'Brien2002-03-211-6/+6
* Remove 'register' keyword.David E. O'Brien2002-03-211-2/+2
* Fix some style bugsAlexey Zelkin2001-12-171-15/+18
* Also fix cases when thousands separator should be put before number. ForAlexey Zelkin2001-12-131-2/+4
* Respect locale while handling of \' flag.Alexey Zelkin2001-12-131-22/+63
* * localeconv() usage is not FLOATING_POINT specific anymore (due to "'" flagAlexey Zelkin2001-12-071-3/+3
* Implement several of the c99 updates to printf(3):Bill Fenner2001-11-301-115/+233
* Fixed style bugs in previous commit.Bruce Evans2001-10-151-15/+15
* Make this compile on ia64.Doug Rabson2001-10-141-25/+46
* Mark some functions as __printflike() and/or taking const char * argumentsKris Kennaway2001-08-201-1/+1
* Remove freelists managed by Balloc/Bfree.Tor Egge2001-02-151-5/+18
* Take decimal point from locale instead of hardcoded '.' (SUSv2)Andrey A. Chernov2001-02-101-9/+10
* Backout previous commit. Use of spinlocks was not approved.Tor Egge2001-02-091-18/+5
* Protect freelists managed by Balloc/Bfree with a spinlock.Tor Egge2001-02-081-5/+18
* Remove _THREAD_SAFE and make libc thread-safe by default byDaniel Eischen2001-01-241-62/+49