X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fmemchr.c;h=3ed04a0138c772a422ab55f204e6dab1e14fcb7a;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=6a6440a80e3a6010937ee22402d3d289802879fe;hpb=0a5395faab237ba9008352b0f4bee9659bbd3d5f;p=pdclib diff --git a/functions/string/memchr.c b/functions/string/memchr.c index 6a6440a..3ed04a0 100644 --- a/functions/string/memchr.c +++ b/functions/string/memchr.c @@ -1,33 +1,40 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- +/* memchr( const void *, int, size_t ) -// ---------------------------------------------------------------------------- -// C++ - -const void * memchr( const void * s, int c, size_t n ) { /* TODO */ }; -void * memchr( void * s, int c, size_t n ) { /* TODO */ }; + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ -// ---------------------------------------------------------------------------- -// Standard C +#include -void * memchr( const void * s, int c, size_t n ) { /* TODO */ }; +#ifndef REGTEST -/* PDPC code - unreviewed +void * memchr( const void * s, int c, size_t n ) { - const unsigned char *p; - size_t x = 0; - - p = (const unsigned char *)s; - while (x < n) + const unsigned char * p = (const unsigned char *) s; + while ( n-- ) { - if (*p == (unsigned char)c) return ((void *)p); - p++; - x++; + if ( *p == (unsigned char) c ) + { + return (void *) p; + } + ++p; } - return (NULL); + return NULL; } -*/ + +#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