34 lines
823 B
C
Raw Permalink Normal View History

1999-05-03 07:29:11 +00:00
/*
@deftypefn Supplemental void* memchr (const void *@var{s}, int @var{c}, @
size_t @var{n})
1999-05-03 07:29:11 +00:00
2001-10-07 22:42:23 +00:00
This function searches memory starting at @code{*@var{s}} for the
2001-09-26 18:45:50 +00:00
character @var{c}. The search only ends with the first occurrence of
@var{c}, or after @var{length} characters; in particular, a null
character does not terminate the search. If the character @var{c} is
2001-10-07 22:42:23 +00:00
found within @var{length} characters of @code{*@var{s}}, a pointer
to the character is returned. If @var{c} is not found, then @code{NULL} is
2001-09-26 18:45:50 +00:00
returned.
1999-05-03 07:29:11 +00:00
2001-09-26 18:45:50 +00:00
@end deftypefn
1999-05-03 07:29:11 +00:00
*/
#include <ansidecl.h>
#include <stddef.h>
2022-05-13 16:43:15 +09:30
void *
memchr (register const void *src_void, int c, size_t length)
1999-05-03 07:29:11 +00:00
{
const unsigned char *src = (const unsigned char *)src_void;
2001-03-28 05:02:47 +00:00
while (length-- > 0)
1999-05-03 07:29:11 +00:00
{
if (*src == c)
2022-05-13 16:43:15 +09:30
return (void *)src;
1999-05-03 07:29:11 +00:00
src++;
}
return NULL;
}