mirror of
https://github.com/fluencelabs/musl
synced 2025-05-21 19:51:31 +00:00
15 lines
226 B
C
15 lines
226 B
C
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <wchar.h>
|
|
|
|
int swprintf(wchar_t *s, size_t n, const wchar_t *fmt, ...)
|
|
{
|
|
int ret;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
ret = vswprintf(s, n, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|
|
|