aboutsummaryrefslogtreecommitdiffstats
path: root/io/wrap/vswscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'io/wrap/vswscanf.c')
-rw-r--r--io/wrap/vswscanf.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/io/wrap/vswscanf.c b/io/wrap/vswscanf.c
new file mode 100644
index 0000000..675596a
--- /dev/null
+++ b/io/wrap/vswscanf.c
@@ -0,0 +1,9 @@
+#define NO_OPAQUE_TYPE
+#include "io.h"
+#include <wchar.h>
+
+int _vswscanf_wrap(wchar_t const *restrict string,
+ wchar_t const *restrict format, va_list arg)
+{
+ return vswscanf(string, format, arg);
+}