3 @deftypefn Supplemental void* memchr (const void *@var{s}, int @var{c}, @
6 This function searches memory starting at @code{*@var{s}} for the
7 character @var{c}. The search only ends with the first occurrence of
8 @var{c}, or after @var{length} characters; in particular, a null
9 character does not terminate the search. If the character @var{c} is
10 found within @var{length} characters of @code{*@var{s}}, a pointer
11 to the character is returned. If @var{c} is not found, then @code{NULL} is
22 memchr (register const PTR src_void
, int c
, size_t length
)
24 const unsigned char *src
= (const unsigned char *)src_void
;