old-cross-binutils/libiberty/memchr.c

34 lines
815 B
C
Raw 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>
PTR
2005-03-28 02:09:01 +00:00
memchr (register const PTR 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)
return (PTR)src;
src++;
}
return NULL;
}