Table of Contents Previous topic Next topic
C LIBRARY FUNCTIONS->Detailed Descriptions->memchr()
Summary
#include <string.h>
| char *memchr(void *buf,int c, size_t count); | Find character in a buffer |
| buf | Pointer to buffer |
| c | Character to find |
| count | Number of characters to search |