diff options
Diffstat (limited to 'io/wrap/vsscanf.c')
-rw-r--r-- | io/wrap/vsscanf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/io/wrap/vsscanf.c b/io/wrap/vsscanf.c new file mode 100644 index 0000000..dd2bdb8 --- /dev/null +++ b/io/wrap/vsscanf.c @@ -0,0 +1,8 @@ +#define NO_OPAQUE_TYPE +#include "io.h" + +int _vsscanf_wrap(char const *restrict string, char const *restrict format, + va_list arg) +{ + return vsscanf(string, format, arg); +} |