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