3 /* vsprintf( char *, const char *, va_list ap )
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 vsprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, va_list arg )
17 return vsnprintf( s, SIZE_MAX, format, arg ); /* TODO: Replace with a non-checking call */
23 #define _PDCLIB_FILEID "stdio/vsprintf.c"
24 #define _PDCLIB_STRINGIO
26 #include <_PDCLIB_test.h>
28 static int testprintf( char * s, const char * format, ... )
32 va_start( arg, format );
33 i = vsprintf( s, format, arg );
41 #include "printf_testcases.h"