4.1. memchr
void *memchr( const void *v, int c, size_t size);memchr returns a pointer to the first occurrence of character c in v, or NULL if not present among the first `size' characters.
void *memchr( const void *v, int c, size_t size);memchr returns a pointer to the first occurrence of character c in v, or NULL if not present among the first `size' characters.