X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=functions%2Fstdio%2Fsnprintf.c;h=a34558992e5b84a717282dc5da67a976cdaeec8b;hb=87195dbaff9d4b3827dcf3f714662b64077ddb42;hp=881baef800021afb124eb6bf7fdc662e78e81775;hpb=bb52d1ef727270ba4fce41786879defbd5ce8b6e;p=fw%2Fpdclib diff --git a/functions/stdio/snprintf.c b/functions/stdio/snprintf.c index 881baef..a345589 100644 --- a/functions/stdio/snprintf.c +++ b/functions/stdio/snprintf.c @@ -26,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; }