Chinaunix首页 | 论坛 | 博客
  • 博客访问: 72486
  • 博文数量: 22
  • 博客积分: 141
  • 博客等级: 民兵
  • 技术积分: 140
  • 用 户 组: 普通用户
  • 注册时间: 2011-07-28 09:31
文章分类

全部博文(22)

文章存档

2012年(13)

2011年(9)

分类: C/C++

2012-02-26 21:48:30


char * strstr(const char * s1,const char * s2)
{
       int l1, l2;

       l2 = strlen(s2);
       if (!l2)
               return (char *) s1;
       l1 = strlen(s1);
       while (l1 >= l2) {
               l1--;
               if (!memcmp(s1,s2,l2))
                       return (char *) s1;
               s1++;
       }
       return NULL;
}
阅读(998) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~