shithub: scc

ref: ec4c79f3a6ed97ec0c407a870827382cbefb1166
dir: /src/libc/stdio/snprintf.c/

View raw version
#include <stdarg.h>
#include <stdio.h>

#undef snprintf

int
snprintf(char *restrict s, size_t siz, const char *restrict fmt, ...)
{
	int r;
	va_list va;

	va_start(va, fmt);
	r = vsnprintf(s, siz, fmt, va);
	va_end(va);

	return r;
}