X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fmemchr.c;h=9aef229e69f040f5b74b150c3987f633ba692a13;hb=c0169638bd02098717cb23fbbca3bcc4e4caccf0;hp=1c9563c7efa3641f166009935fe281cb0ce00c06;hpb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;p=pdclib diff --git a/functions/string/memchr.c b/functions/string/memchr.c index 1c9563c..9aef229 100644 --- a/functions/string/memchr.c +++ b/functions/string/memchr.c @@ -1,16 +1,18 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * --------------------------------------------------------------------------*/ +/* $Id$ */ -#include <__size_t.h> -#include <__NULL.h> +/* Release $Name$ */ -void * memchr( const void * src, int c, size_t n ) +/* memchr( const void *, int, size_t ) + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +#include + +void * memchr( const void * s, int c, size_t n ) { - const unsigned char * p = (const unsigned char *) src; + const unsigned char * p = (const unsigned char *) s; while ( n-- ) { if ( *p == (unsigned char) c ) @@ -21,3 +23,5 @@ void * memchr( const void * src, int c, size_t n ) } return NULL; } + +#warning Test driver missing.