strstr.c
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:2k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /*
  2.  * strstr.c -- return the offset of one string within another.
  3.  *
  4.  * Copyright (C) 1997 Free Software Foundation, Inc. 
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify it under
  7.  * the terms of the GNU General Public License as published by the Free
  8.  * Software Foundation; either version 2, or (at your option) any later
  9.  * version. 
  10.  *
  11.  * This program is distributed in the hope that it will be useful, but WITHOUT
  12.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  14.  * more details. 
  15.  *
  16.  * You should have received a copy of the GNU General Public License along with
  17.  * this program; if not, write to the Free Software Foundation, Inc., 59
  18.  * Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
  19.  */
  20. /* Written by Philippe De Muyter <phdm@info.ucl.ac.be>.  */
  21. /*
  22.  * NAME 
  23.  *
  24.  * strstr -- locate first occurence of a substring 
  25.  *
  26.  * SYNOPSIS 
  27.  *
  28.  * char *strstr (char *s1, char *s2) 
  29.  *
  30.  * DESCRIPTION 
  31.  *
  32.  * Locates the first occurence in the string pointed to by S1 of the string
  33.  * pointed to by S2.  Returns a pointer to the substring found, or a NULL
  34.  * pointer if not found.  If S2 points to a string with zero length, the
  35.  * function returns S1. 
  36.  *
  37.  * BUGS 
  38.  *
  39.  */
  40. char *
  41. strstr (buf, sub)
  42.      register char *buf;
  43.      register char *sub;
  44. {
  45.   register char *bp;
  46.   if (!*sub)
  47.     return buf;
  48.   for (;;)
  49.     {
  50.       if (!*buf)
  51. break;
  52.       bp = buf;
  53.       for (;;)
  54. {
  55.   if (!*sub)
  56.     return buf;
  57.   if (*bp++ != *sub++)
  58.     break;
  59. }
  60.       sub -= (unsigned long) bp;
  61.       sub += (unsigned long) buf;
  62.       buf += 1;
  63.     }
  64.   return 0;
  65. }