X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fmemchr.c;h=3ed04a0138c772a422ab55f204e6dab1e14fcb7a;hb=e1c526e9bad3f6e69391e94059096145390508d3;hp=9aef229e69f040f5b74b150c3987f633ba692a13;hpb=c0169638bd02098717cb23fbbca3bcc4e4caccf0;p=pdclib diff --git a/functions/string/memchr.c b/functions/string/memchr.c index 9aef229..3ed04a0 100644 --- a/functions/string/memchr.c +++ b/functions/string/memchr.c @@ -1,7 +1,3 @@ -/* $Id$ */ - -/* Release $Name$ */ - /* memchr( const void *, int, size_t ) This file is part of the Public Domain C Library (PDCLib). @@ -10,6 +6,8 @@ #include +#ifndef REGTEST + void * memchr( const void * s, int c, size_t n ) { const unsigned char * p = (const unsigned char *) s; @@ -24,4 +22,19 @@ void * memchr( const void * s, int c, size_t n ) return NULL; } -#warning Test driver missing. +#endif + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main( void ) +{ + TESTCASE( memchr( abcde, 'c', 5 ) == &abcde[2] ); + TESTCASE( memchr( abcde, 'a', 1 ) == &abcde[0] ); + TESTCASE( memchr( abcde, 'a', 0 ) == NULL ); + TESTCASE( memchr( abcde, '\0', 5 ) == NULL ); + TESTCASE( memchr( abcde, '\0', 6 ) == &abcde[5] ); + return TEST_RESULTS; +} + +#endif