原 型:void *memchr(const void *s, int c, size_t n);
头 文 件:string.h
返 回 值:指向字符的指针,此字符是s所指向对象的前n个字符中第一个遇到的字符c。如果没有找到c,则返回空指针。
相似函数:strchr
也可参见:strpbrk、strrchr、strstr