X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstrstr.c;h=7709d8464abe664312f8f41856b9047e368070a3;hb=91abc3ea5f6beb62c546bd01777dd056e1ffcd39;hp=cdee6211757546f99f4f6613d2ec472f9750c16a;hpb=4838f42df1843ec9f5058d74c8114c1fcb332a89;p=gnulib.git diff --git a/lib/strstr.c b/lib/strstr.c index cdee62117..7709d8464 100644 --- a/lib/strstr.c +++ b/lib/strstr.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994 Free Software Foundation, Inc. +/* Copyright (C) 1994, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. This program is free software; you can redistribute it and/or modify @@ -24,15 +24,17 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ * * Stephen R. van den Berg, berg@pool.informatik.rwth-aachen.de */ +#if HAVE_CONFIG_H +# include +#endif + #include #include typedef unsigned chartype; char * -strstr (phaystack, pneedle) - const char *phaystack; - const char *pneedle; +strstr (const char *phaystack, const char *pneedle) { register const unsigned char *haystack, *needle; register chartype b, c; @@ -73,7 +75,7 @@ strstr (phaystack, pneedle) a = *++haystack; if (a == '\0') goto ret0; -shloop: } +shloop:; } while (a != b); jin: a = *++haystack;