shithub: scc

ref: 994751d39485e086ef623f202fb1b84729fd5d19
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;
}