aboutsummaryrefslogtreecommitdiffstats
path: root/io/wscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'io/wscanf.c')
-rw-r--r--io/wscanf.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/io/wscanf.c b/io/wscanf.c
new file mode 100644
index 0000000..beb021a
--- /dev/null
+++ b/io/wscanf.c
@@ -0,0 +1,10 @@
+#include "io.h"
+
+int wscanf(wchar_t const *restrict format, ...)
+{
+ va_list arg;
+ va_start(arg, format);
+ int lenght = vwscanf(format, arg);
+ va_end(arg);
+ return lenght;
+}