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