X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fstdio%2Fsnprintf.c;h=a34558992e5b84a717282dc5da67a976cdaeec8b;hb=87195dbaff9d4b3827dcf3f714662b64077ddb42;hp=efe1ba95a7c7f97e0219c362bec18e440fe81694;hpb=7c4838d7185104993621482a799d098cab6be0f0;p=fw%2Fpdclib diff --git a/functions/stdio/snprintf.c b/functions/stdio/snprintf.c index efe1ba9..a345589 100644 --- a/functions/stdio/snprintf.c +++ b/functions/stdio/snprintf.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* snprintf( char *, size_t, const char *, ... ) This file is part of the Public Domain C Library (PDCLib). @@ -15,9 +13,12 @@ int snprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict format, ...) { + int rc; va_list ap; va_start( ap, format ); - return vsnprintf( s, n, format, ap ); + rc = vsnprintf( s, n, format, ap ); + va_end( ap ); + return rc; } #endif @@ -25,9 +26,17 @@ int snprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict #ifdef TEST #include <_PDCLIB_test.h> +#include +#include + +#define testprintf( s, n, format, ... ) snprintf( s, n, format, __VA_ARGS__ ) + +#define TESTCASE_SPRINTF( x ) TESTCASE( x ) + int main( void ) { - TESTCASE( NO_TESTDRIVER ); + char buffer[100]; +#include "printf_testcases.incl" return TEST_RESULTS; }