From c35bb6645f32bc684dc3da99d4d71c4ead2d4717 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 17 Mar 2011 22:55:43 -0400 Subject: 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/vwprintf.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/stdio/vwprintf.c (limited to 'src/stdio/vwprintf.c') diff --git a/src/stdio/vwprintf.c b/src/stdio/vwprintf.c new file mode 100644 index 00000000..c1923e62 --- /dev/null +++ b/src/stdio/vwprintf.c @@ -0,0 +1,7 @@ +#include +#include + +int vwprintf(const wchar_t *fmt, va_list ap) +{ + return vfwprintf(stdout, fmt, ap); +} -- cgit v1.2.1