diff options
Diffstat (limited to 'src/wchar/swscanf.c')
-rw-r--r-- | src/wchar/swscanf.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/wchar/swscanf.c b/src/wchar/swscanf.c new file mode 100644 index 00000000..2f10842a --- /dev/null +++ b/src/wchar/swscanf.c @@ -0,0 +1,19 @@ +#include <wchar.h> +#include "stdarg.h" + +int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...) +{ + /* + va_list ap; + va_start(ap, format); + int ret = vswscanf(s, format, ap); + va_end(ap); + return ret; + */ + (void)s; (void)format; + return -1; +} + +/* +STDC(199409) +*/ |