shithub: scc

ref: 2d1b151c900071e5362b23e2e673c3cc0221c166
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;
}