秀丽小刺猬

文章
3
资源
0
加入时间
2年10月21天

【C语言】【笔试题】模拟实现strstr函数

#define _CRT_SECURE_NO_WARNINGS 1#include#include#includechar *my_strstr(char *dst,  char *src){     assert(dst);     assert(src);     char *p = dst;     char *s1 = p;     char *s2 = src;