X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstring%2Fstrchr.c;h=8c6e8a42ffec9099a401ea11f79c5edb04d9dd80;hp=ced1d552154e5a49eab4582fc8edd2ef08e2f601;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=c2f1367984ba4153d892062759c3813020b65a9a diff --git a/functions/string/strchr.c b/functions/string/strchr.c index ced1d55..8c6e8a4 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). @@ -10,6 +6,8 @@ #include +#ifndef REGTEST + char * strchr( const char * s, int c ) { do @@ -21,3 +19,20 @@ char * strchr( const char * s, int c ) } while ( *s++ ); return NULL; } + +#endif + +#ifdef TEST +#include "_PDCLIB_test.h" + +int main( void ) +{ + 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