X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstring%2Fstrchr.c;h=19a29a80b9ab27ec5356752e6ce47cb022a325ed;hp=15155a4f41f625f772c4059a9145339b5700a4a2;hb=12e17136786afb1775c9dc946cbe41f5e230c24a;hpb=9489b93733c00be5a94e2ee5b349457c78184a1a diff --git a/functions/string/strchr.c b/functions/string/strchr.c index 15155a4..19a29a8 100644 --- a/functions/string/strchr.c +++ b/functions/string/strchr.c @@ -29,10 +29,9 @@ char * strchr( const char * s, int c ) #ifdef TEST #include <_PDCLIB_test.h> -int main() +int main( void ) { char abccd[] = "abccd"; - BEGIN_TESTS; TESTCASE( strchr( abccd, 'x' ) == NULL ); TESTCASE( strchr( abccd, 'a' ) == &abccd[0] ); TESTCASE( strchr( abccd, 'd' ) == &abccd[4] );