1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-08 18:47:52 +00:00
reactos/lib/sdk/crt/mem/memchr.c

19 lines
215 B
C
Raw Normal View History

/*
* $Id$
*/
#include <string.h>
void* memchr(const void *s, int c, size_t n)
{
if (n)
{
const char *p = s;
do {
if (*p++ == c)
return (void *)(p-1);
} while (--n != 0);
}
return 0;
}