X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fmemchr.c;h=75809e079d62a7b35a789ca863cd113d059287a4;hb=4e46e25a507c6b6a7497adfc8ec9f9ab6e14addc;hp=4194a854bb0ac5ab1f5ac3f6f81f76857be290ae;hpb=c2f1367984ba4153d892062759c3813020b65a9a;p=pdclib diff --git a/functions/string/memchr.c b/functions/string/memchr.c index 4194a85..75809e0 100644 --- a/functions/string/memchr.c +++ b/functions/string/memchr.c @@ -23,3 +23,18 @@ void * memchr( const void * s, int c, size_t n ) } return NULL; } + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main() +{ + BEGIN_TESTS; + 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