Libft(6) - memchr
Libft(6) - memchr MEMCHR(3) BSD Library Functions Manual MEMCHR(3) NAME memchr -- locate byte in byte string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memchr(const void *s, int c, size_t n); DESCRIPTION The memchr() function locates the first occurrence of c (converted to an unsigned char) in string s. RETURN VALUES The memchr() function returns a pointer to the byte locate..
2021.06.26