The memchr function

Name

memchr -- 

Synopsis

#include <string.h>

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 the initial n characters (each interpreted as an unsigned char) of the object pointed to by s.

Returns

The memchr function returns a pointer to the located character, or a null pointer if the character does not occur in the object.

Implementation Notes

None