implement wprintf family of functions
authorRich Felker <dalias@aerifal.cx>
Fri, 18 Mar 2011 02:55:43 +0000 (22:55 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 18 Mar 2011 02:55:43 +0000 (22:55 -0400)
commitc35bb6645f32bc684dc3da99d4d71c4ead2d4717
treeb0984f88eee7060f73d77eb21d2d3e75b3e2e233
parenta012aa879fb790c8e0446638b206b7f34e92c51e
implement wprintf family of functions

this implementation is extremely ugly and inefficient, but it avoids a
good deal of code duplication and bloat. it may be cleaned up later to
eliminate the remaining code duplication and some of the warts, but i
don't really care about its performance.

note that swprintf is not yet implemented.
src/stdio/fwprintf.c [new file with mode: 0644]
src/stdio/vfwprintf.c [new file with mode: 0644]
src/stdio/vwprintf.c [new file with mode: 0644]
src/stdio/wprintf.c [new file with mode: 0644]