X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrchr.c;h=826d6875122d91052095636823f57bfd06087510;hb=cd6cfe0f578c4f744ddc9a342243aff6b42f8027;hp=15155a4f41f625f772c4059a9145339b5700a4a2;hpb=d18abec50882ca919a52ffc54b2b5c8703cb2864;p=pdclib.old diff --git a/functions/string/strchr.c b/functions/string/strchr.c index 15155a4..826d687 100644 --- a/functions/string/strchr.c +++ b/functions/string/strchr.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* strchr( const char *, int ) This file is part of the Public Domain C Library (PDCLib). @@ -29,10 +27,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] );