strchr的功能是找一个字符有没有在一个字符串里
char* my_strchr(const char* p,const char n)
{
assert(p);
assert(n);
char* ret = (char*) p;
while (*ret){
while (*ret&&(*ret != n))
{
ret++;
}
if (*ret == n)
return ret;
}
return NULL;
}
int main(){
char* p = "abcdef";
char n = 'w';
printf("%s",my_strchr(p,n));
system("pause");
return 0;
}