strstr.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2002 MySQL AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*  File   : strstr.c
  18.     Author : Monty
  19.     Updated: 1986.11.24
  20.     Defines: strstr()
  21.     strstr(src, pat) looks for an instance of pat in src.  pat is not a
  22.     regex(3) pattern, it is a literal string which must be matched exactly.
  23.     The result is a pointer to the first character of the located instance,
  24.     or NullS if pat does not occur in src.
  25. */
  26. #include <my_global.h>
  27. #include "m_string.h"
  28. #ifndef HAVE_STRSTR
  29. char *strstr(register const char *str,const char *search)
  30. {
  31.  register char *i,*j;
  32.  register char first= *search;
  33. skip:
  34.   while (*str != '') {
  35.     if (*str++ == first) {
  36.       i=(char*) str; j=(char*) search+1;
  37.       while (*j)
  38. if (*i++ != *j++) goto skip;
  39.       return ((char*) str-1);
  40.     }
  41.   }
  42.   return ((char*) 0);
  43. } /* strstr */
  44. #endif