3 /* sprintf( char *, 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.
15 int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, ...)
19 va_start( ap, format );
20 rc = vsnprintf( s, SIZE_MAX, format, ap ); /* TODO: replace with non-checking call */
28 #define _PDCLIB_FILEID "stdio/sprintf.c"
29 #define _PDCLIB_STRINGIO
32 #include <_PDCLIB_test.h>
34 #define testprintf( s, ... ) sprintf( s, __VA_ARGS__ )
39 #include "printf_testcases.h"