Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
starboard
/
stdio
/
vswprintf.c
blob: a9f932f0b2858fe19738e912debcef3f511ce787 [
file
] [
log
] [
blame
]
#include
<wchar.h>
#include
"starboard/string.h"
#if SB_API_VERSION < 16
int
vswprintf
(
wchar_t
*
restrict s
,
size_t
n
,
const
wchar_t
*
restrict fmt
,
va_list ap
)
{
return
SbStringFormatWide
(
s
,
n
,
fmt
,
ap
);
}
#endif