stdio: Partially implement vsnprintf and friends.
commit140465dcaa869bfa4fda2f872e651655e3aa31ae
authorNick Bowler <nbowler@draconx.ca>
Sat, 9 Oct 2010 00:07:21 +0000 (8 20:07 -0400)
committerNick Bowler <nbowler@draconx.ca>
Sat, 9 Oct 2010 04:28:00 +0000 (9 00:28 -0400)
tree61a215a2387a1716e1901438b80688a518bc89b4
parenteca0aabd3c5bd5bde0f9c008f785fce4d8616fee
stdio: Partially implement vsnprintf and friends.

Only integer conversion specifiers are implemented so far.  I believe
them to be feature-complete.  As this is sufficient to run the strtol
test cases (which use snprintf), this shouldn't break anything yet.

vsnprintf is an extremely complicated function, and there is a
substantial amount of testing still to do.
Makefile.am
src/stdio/Makefile.inc [new file with mode: 0644]
src/stdio/snprintf.c [new file with mode: 0644]
src/stdio/sprintf.c [new file with mode: 0644]
src/stdio/vsnprintf.c [new file with mode: 0644]
src/stdio/vsprintf.c [new file with mode: 0644]
test/.gitignore
test/sprintf.c [new file with mode: 0644]