strstr

不再关注网络安全

strstr自实现

  • 2012-11-03
  • VC

strstr:在字符串中查找指定字符串的第一次出现: 不需要调用其他库函数做法: char* strstr(const char *s1, const char *s2) { int n; if (*s2) { ...