C语言:字符串函数(strstr,strtok,strerror)以及(memcpy,memmove,memcmp)
1.strstr作用:查找,在一个字符串中找另一个字符串的位置找到返回地址找不到返回空指针(NULL)char*strstr(constchar*str1,constchar*str2);这便是strstr函数,下面我们来模拟实现这个函数//模拟实现strstr函数char*my_strstr(constchar*str1,constchar*str2){//断言assert(str1&&str2