blob: 1eec0c0831b031a6762e9c71ee7b4e235ea1e52a [file] [log] [blame]
#include <stdio.h>
#include "starboard/string.h"
int vsnprintf(char *restrict s, size_t n, const char *restrict fmt, va_list ap) {
return SbStringFormat(s, n, fmt, ap);
}