1999-05-03 09:29:11 +02:00
|
|
|
/*
|
|
|
|
|
libiberty: documentation markup and order fixes.
libiberty/:
* splay-tree.c: Escape wrapping newlines in texinfo markup
with '@', to fix function declaration output rendering.
* gather-docs: Relax and improve macro name matching to actually
match all current names and to allow input line wrapping.
* bsearch.c, concat.c, crc32.c, fnmatch.txh, fopen_unlocked.c,
hashtab.c, insque.c, make-relative-prefix.c, memchr.c, memcmp.c,
memcpy.c, memmem.c, memmove.c, mempcpy.c, memset.c,
pexecute.txh, random.c, setenv.c, setproctitle.c,
simple-object.txh, snprintf.c, stpncpy.c, strncmp.c, strtod.c,
strtol.c, vasprintf.c, vprintf.c, vsnprintf.c, xmemdup.c:
Wrap long texinfo input lines.
* functions.texi: Regenerate.
2011-02-03 08:23:59 +01:00
|
|
|
@deftypefn Supplemental void* memchr (const void *@var{s}, int @var{c}, @
|
|
|
|
size_t @var{n})
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-10-08 00:42:23 +02:00
|
|
|
This function searches memory starting at @code{*@var{s}} for the
|
2001-09-26 20:45:50 +02: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-08 00:42:23 +02: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 20:45:50 +02:00
|
|
|
returned.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-09-26 20:45:50 +02:00
|
|
|
@end deftypefn
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ansidecl.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
PTR
|
2005-03-28 04:09:01 +02:00
|
|
|
memchr (register const PTR src_void, int c, size_t length)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
const unsigned char *src = (const unsigned char *)src_void;
|
|
|
|
|
2001-03-28 07:02:47 +02:00
|
|
|
while (length-- > 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
if (*src == c)
|
|
|
|
return (PTR)src;
|
|
|
|
src++;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|