X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrchr.c;h=621100e04828860d931194276520020469f3168c;hb=b3b47892170124cf28a2cfb5ff4aeb227989aa21;hp=15155a4f41f625f772c4059a9145339b5700a4a2;hpb=40d0246771c8e593d4b5fdc97dd87b4afd260be2;p=pdclib diff --git a/functions/string/strchr.c b/functions/string/strchr.c index 15155a4..621100e 100644 --- a/functions/string/strchr.c +++ b/functions/string/strchr.c @@ -1,7 +1,3 @@ -/* $Id$ */ - -/* Release $Name$ */ - /* strchr( const char *, int ) This file is part of the Public Domain C Library (PDCLib). @@ -27,12 +23,12 @@ char * strchr( const char * s, int c ) #endif #ifdef TEST -#include <_PDCLIB_test.h> -int main() +#include "_PDCLIB_test.h" + +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] ); @@ -40,4 +36,5 @@ int main() TESTCASE( strchr( abccd, 'c' ) == &abccd[2] ); return TEST_RESULTS; } + #endif