mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 06:02:04 +00:00
initial check-in, version 0.5.0
This commit is contained in:
13
src/stdio/wscanf.c
Normal file
13
src/stdio/wscanf.c
Normal file
@ -0,0 +1,13 @@
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <wchar.h>
|
||||
|
||||
int wscanf(const wchar_t *fmt, ...)
|
||||
{
|
||||
int ret;
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
ret = vwscanf(fmt, ap);
|
||||
va_end(ap);
|
||||
return ret;
|
||||
}
|
Reference in New Issue
Block a user