![]() -> Click here to learn how to get live help <- |
MEMCHRIndexNAMEmemchr, memrchr - scan memory for a characterSYNOPSIS#include <string.h> void *memchr(const void *s, int c, size_t n); void *memrchr(const void *s, int c, size_t n); DESCRIPTIONThe memchr() function scans the first fInfP bytes of the memory area pointed to by fIsfP for the character fIcfP. The first byte to match fIcfP (interpreted as an unsigned character) stops the operation.The memrchr() function is like the memchr() function, except that it searches backwards from the end of the fInfP bytes pointed to by fIsfP instead of forwards from the front. RETURN VALUEThe fBmemchr()fP and fBmemrchr()fP functions return a pointer to the matching byte or NULL if the character does not occur in the given memory area.CONFORMING TOThe memchr() function conforms to SVID 3, BSD 4.3, ISO 9899, POSIX. The memrchr() function is a GNU extension, available since glibc 2.1.91.SEE ALSOindex(3), rindex(3), strchr(3), strpbrk(3), strrchr(3), strsep(3), strspn(3), strstr(3), wmemchr(3)
Index |