X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstdio%2Fsprintf.c;h=9c7e17a2bf57149d99ffe1bfc730ce94c2a0f0fc;hp=ca7e2d18e4bcf778ea7ed34b1c91694baf266608;hb=35ae2c90b1e06be0b78a67a11c1f14c71f547a40;hpb=dfd2616dce9f95bc9678e7be4c81493e0c442679 diff --git a/functions/stdio/sprintf.c b/functions/stdio/sprintf.c index ca7e2d1..9c7e17a 100644 --- a/functions/stdio/sprintf.c +++ b/functions/stdio/sprintf.c @@ -25,6 +25,7 @@ int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, .. #endif #ifdef TEST +#define _PDCLIB_FILEID "stdio/sprintf.c" #include <_PDCLIB_test.h> #include @@ -32,9 +33,6 @@ int sprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, .. #define testprintf( s, format, ... ) sprintf( s, format, __VA_ARGS__ ) -#define TESTCASE_SPRINTF( x ) if ( strcmp( target, x ) == 0 ) {} \ - else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - \"%s\" != %s\n", __LINE__, target, #x ); } - int main( void ) { char target[100];