summaryrefslogtreecommitdiff
path: root/libc/stdio/printf.c
AgeCommit message (Expand)Author
2009-09-18trim Experimentally off and uncommented hiddenBernhard Reutner-Fischer
2008-11-20next portion of libc_hidden_proto removalDenis Vlasenko
2006-01-14make DODEBUG=y happy, update sysdeps/common/* copyrightPeter S. Mazinger
2006-01-14hidden_def/hidden_proto: convert all users (I hope) termios split, add some m...Peter S. Mazinger
2005-12-09Implement all needed hidden *printf and correct vasprintf, thx blindvtPeter S. Mazinger
2004-02-11New stdio core. Should be more maintainable. Fixes a couple of bugs.Manuel Novoa III
2003-09-23Quick fix to make sure vfprintf always checks stream orientation whenManuel Novoa III
2003-09-06Implement vsnprintf (old_vfprintf only) and vsnscanf when uClibc isManuel Novoa III
2003-09-01Fix precision bug for %g conversion specifier when using %f style.Manuel Novoa III
2003-08-01Add a new *scanf implementation, includeing the *wscanf functions.Manuel Novoa III
2002-12-20The big thing is locale dependent collation support.Manuel Novoa III
2002-11-27Fix an ifdef mismatch.Manuel Novoa III
2002-11-22Ok... here's the summary:Manuel Novoa III
2002-11-04Add printf wchar support for %lc (%C) and %ls (%S).Manuel Novoa III
2002-11-03It was easy enough to respect locale-specific decimal point for printfManuel Novoa III
2002-11-03Implement locale-specific grouping in printf for base 10 integer conversionsManuel Novoa III
2002-10-29Fix a silly typo for ManuelEric Andersen
2002-10-29Fix a problem in vasprintf (reported by vodz a while back) when builtManuel Novoa III
2002-08-17Fix two problems with printf that showed up in the python 2.2.1 tests;Manuel Novoa III
2002-08-13__fsetlocking() and FILE field user_locking were completely broken. :-(Manuel Novoa III
2002-08-12Revert commit by davidm to printf.c that initialized conv_numManuel Novoa III
2002-08-09Fix a number of compile time warnings so that uClibc will build with -Werror ...David McCullough
2002-07-07Attempt to clean up the strerror_r situation.Manuel Novoa III
2002-07-03Enable WCHAR support for C/POSIX stub locales.Manuel Novoa III
2002-06-18Fix perror() and printf("%m") to not call strerror(), as required by theManuel Novoa III
2002-06-11Revert Erik's patch to vasprintf and fix the real issue.Manuel Novoa III
2002-06-11This patch from Rik Faith <faith@alephnull.com> fixes a potentiallyEric Andersen
2002-05-12Several bugfixes for problems that showed up on alphaEric Andersen
2002-05-11Adjust preprocessor logic to initialize QUAL_CHARS correctly for Erik's alphaManuel Novoa III
2002-04-02Fix an arg promotion handling bug in _do_one_spec for %c reportedManuel Novoa III
2002-04-01Forget to initialize thread locks for fake files. Thanks Erik.Manuel Novoa III
2002-03-22Add in a knob to disable %m supportEric Andersen
2002-03-13Apply Miles Bader's missing __va_copy() fix.Manuel Novoa III
2002-03-12Fix another O_LARGEFILE bug. Also, I forget to make floating point optionalManuel Novoa III
2002-03-12Deal with cvs "feature"... or is that cvs _user_...Manuel Novoa III
2002-03-12Swap in the new stdio code.Manuel Novoa III
2001-06-13Fix printf so that %p outputs "(nil)" for (void *) 0, to match glibc behavior.Manuel Novoa III
2001-06-13Fix printf handling of %p to prepend "0x" since output is in hex.Manuel Novoa III
2001-05-07A couple of printf fixes from Johan Adolfsson (johan.adolfsson@axis.com).Manuel Novoa III
2001-03-19Since Erik apparently wants def/undef vs def 1/0...Manuel Novoa III
2001-03-18Test for Config features using features.h.Manuel Novoa III
2001-03-13Delete a stray character that hopped into the file...Manuel Novoa III
2001-02-28Fix a buglet regarding floating point output for ?nprintf functions.Manuel Novoa III
2001-02-27stdio mostly rewritten... passes lots of tests now.Manuel Novoa III
2001-02-19Lots of stdio cleanups. Several bug fixes, addition of a number of functionsManuel Novoa III
2001-02-15Add vdprintf function. Note: will be rewritten to check if file descriptor h...Manuel Novoa III
2001-01-30Fix a couple of bugs in printf. Add floating pt output for doubles. Yeah!Manuel Novoa III
2001-01-28Really fixed 0-pad bug this time. ;-) Code-size reductions if sizeof(int) andManuel Novoa III
2001-01-27Fixed (hopefully) 0-pad bug in printf. Added asprintf function. ReworkedManuel Novoa III
2001-01-12Cannot portably pass a short via va_args, since it will beEric Andersen