Files

11 lines
201 B
C
Raw Permalink Normal View History

#include <stdio.h>
int sprintf(char *restrict s, const char *restrict fmt, ...) {
int ret;
va_list ap;
va_start(ap, fmt);
ret = vsprintf(s, fmt, ap);
va_end(ap);
return ret;
}