X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrchr.c;h=826d6875122d91052095636823f57bfd06087510;hb=cd6cfe0f578c4f744ddc9a342243aff6b42f8027;hp=ec296cbce33cab48ae8b9aeaa6fed4500710c83b;hpb=1d1bcc009f3ebb75d549b078cfd0017f1298fae3;p=pdclib.old diff --git a/functions/string/strchr.c b/functions/string/strchr.c index ec296cb..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). @@ -10,6 +8,8 @@ #include +#ifndef REGTEST + char * strchr( const char * s, int c ) { do @@ -22,11 +22,19 @@ char * strchr( const char * s, int c ) return NULL; } -#warning Test driver missing. +#endif #ifdef TEST -int main() +#include <_PDCLIB_test.h> + +int main( void ) { - return 0; + char abccd[] = "abccd"; + TESTCASE( strchr( abccd, 'x' ) == NULL ); + TESTCASE( strchr( abccd, 'a' ) == &abccd[0] ); + TESTCASE( strchr( abccd, 'd' ) == &abccd[4] ); + TESTCASE( strchr( abccd, '\0' ) == &abccd[5] ); + TESTCASE( strchr( abccd, 'c' ) == &abccd[2] ); + return TEST_RESULTS; } #endif