3 /* snprintf( char *, size_t, const char *, ... )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
14 int snprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict format, ...)
18 va_start( ap, format );
19 rc = vsnprintf( s, n, format, ap );
27 #define _PDCLIB_FILEID "stdio/snprintf.c"
28 #define _PDCLIB_STRINGIO
32 #include <_PDCLIB_test.h>
34 #define testprintf( s, ... ) snprintf( s, 100, __VA_ARGS__ )
39 #include "printf_testcases.h"
40 TESTCASE( snprintf( NULL, 0, "foo" ) == 3 );
41 TESTCASE( snprintf( NULL, 0, "%d", 100 ) == 3 );