memchrSearches a memory block for a specified character | |||||||
Arguments
Return ValueA pointer to the located character c is returned. NULL is returned if c cannot be found in the memory block.ExplanationThe first occurrence of the character c in the memory block pointed to by s is located and a pointer to the character is returned. At most n bytes of the memory block will be searched. |