不再关注网络安全
strstr:在字符串中查找指定字符串的第一次出现: 不需要调用其他库函数做法: char* strstr(const char *s1, const char *s2) { int n; if (*s2) { ...
体验盒子