summaryrefslogtreecommitdiff
path: root/src/stdio/fwscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/fwscanf.c')
-rw-r--r--src/stdio/fwscanf.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/stdio/fwscanf.c b/src/stdio/fwscanf.c
new file mode 100644
index 00000000..a6892cf6
--- /dev/null
+++ b/src/stdio/fwscanf.c
@@ -0,0 +1,13 @@
+#include <stdio.h>
+#include <stdarg.h>
+#include <wchar.h>
+
+int fwscanf(FILE *f, const wchar_t *fmt, ...)
+{
+ int ret;
+ va_list ap;
+ va_start(ap, fmt);
+ ret = vfwscanf(f, fmt, ap);
+ va_end(ap);
+ return ret;
+}