blob: b8b69eb4bade1294efde24d706e314d803dfb714 [file] [log] [blame]
#include <wchar.h>
#include "starboard/string.h"
int vswprintf(wchar_t *restrict s, size_t n, const wchar_t *restrict fmt, va_list ap) {
return SbStringFormatWide(s, n, fmt, ap);
}