mirror of
https://github.com/fluencelabs/musl
synced 2025-04-29 17:12:14 +00:00
16 lines
272 B
C
16 lines
272 B
C
#include <stdarg.h>
|
|
#include <wchar.h>
|
|
#include "libc.h"
|
|
|
|
int swscanf(const wchar_t *restrict s, const wchar_t *restrict fmt, ...)
|
|
{
|
|
int ret;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
ret = vswscanf(s, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|
|
|
|
weak_alias(swscanf,__isoc99_swscanf);
|