X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcspn.c;h=2709e920b25ef82561c6d28203a24f48157f2a2f;hb=12e17136786afb1775c9dc946cbe41f5e230c24a;hp=68dd8b42676afff932e73bfc993fbc6835879f08;hpb=d18abec50882ca919a52ffc54b2b5c8703cb2864;p=pdclib.old diff --git a/functions/string/strcspn.c b/functions/string/strcspn.c index 68dd8b4..2709e92 100644 --- a/functions/string/strcspn.c +++ b/functions/string/strcspn.c @@ -36,9 +36,8 @@ size_t strcspn( const char * s1, const char * s2 ) #ifdef TEST #include <_PDCLIB_test.h> -int main() +int main( void ) { - BEGIN_TESTS; TESTCASE( strcspn( abcde, "x" ) == 5 ); TESTCASE( strcspn( abcde, "xyz" ) == 5 ); TESTCASE( strcspn( abcde, "zyx" ) == 5 );