Loading...
Select Version
&pagelevel(4)&pagelevel
Definition | #include <string.h> void *memchr(const void *s, int c, size_t n);
| |
Return val. | Pointer to the position of c in area s | |
if successful. | ||
NULL pointer | if c is not contained in the specified area. | |
Notes | The function is suitable for processing character arrays containing the null byte (\0), since The following two prototypes of the void *memchr( void *s, int c, size_t n); | |
See also | memcmp, memcpy, memset |