X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fmemchr.c;h=4194a854bb0ac5ab1f5ac3f6f81f76857be290ae;hb=41afb7a0762978ee57d1a8d6223e82e73f2acb9b;hp=83d6f1702c5fd3fc190d9082c4f577892ea604dc;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/string/memchr.c b/functions/string/memchr.c index 83d6f17..4194a85 100644 --- a/functions/string/memchr.c +++ b/functions/string/memchr.c @@ -1,17 +1,25 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- +/* $Id$ */ -// ---------------------------------------------------------------------------- -// C++ +/* Release $Name$ */ -const void * memchr( const void * s, int c, size_t n ) { /* TODO */ }; -void * memchr( void * s, int c, size_t n ) { /* TODO */ }; +/* memchr( const void *, int, size_t ) -// ---------------------------------------------------------------------------- -// Standard C + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ -void * memchr( const void * s, int c, size_t n ) { /* TODO */ }; +#include + +void * memchr( const void * s, int c, size_t n ) +{ + const unsigned char * p = (const unsigned char *) s; + while ( n-- ) + { + if ( *p == (unsigned char) c ) + { + return (void *) p; + } + ++p; + } + return NULL; +}