X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrchr.c;h=621100e04828860d931194276520020469f3168c;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=19a29a80b9ab27ec5356752e6ce47cb022a325ed;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/functions/string/strchr.c b/functions/string/strchr.c index 19a29a8..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,7 +23,8 @@ char * strchr( const char * s, int c ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -39,4 +36,5 @@ int main( void ) TESTCASE( strchr( abccd, 'c' ) == &abccd[2] ); return TEST_RESULTS; } + #endif