blob: 713b3cd7fff2e0b449838ca914f3e77f915ac04b [file] [log] [blame]
/*
* snprintf.c
*/
#include <stdio.h>
int snprintf(char *buffer, size_t n, const char *format, ...)
{
va_list ap;
int rv;
va_start(ap, format);
rv = vsnprintf(buffer, n, format, ap);
va_end(ap);
return rv;
}