(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / generic / strcasestr.c
blob1dde43c606323eeb9c94e3bc5d49dece781f405f
1 /* Return the offset of one string within another.
2 Copyright (C) 1994, 1996-2000, 2004 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
21 * My personal strstr() implementation that beats most other algorithms.
22 * Until someone tells me otherwise, I assume that this is the
23 * fastest implementation of strstr() in C.
24 * I deliberately chose not to comment it. You should have at least
25 * as much fun trying to understand it, as I had to write it :-).
27 * Stephen R. van den Berg, berg@pool.informatik.rwth-aachen.de */
29 #if HAVE_CONFIG_H
30 # include <config.h>
31 #endif
33 #include <ctype.h>
35 #if defined _LIBC || defined HAVE_STRING_H
36 # include <string.h>
37 #endif
39 #ifdef _LIBC
40 # include <locale/localeinfo.h>
41 # define TOLOWER(c) __tolower_l ((unsigned char) c, loc)
42 #else
43 # define TOLOWER(c) _tolower (c)
44 #endif
46 typedef unsigned chartype;
48 #undef strcasestr
49 #undef __strcasestr
51 char *
52 __strcasestr (phaystack, pneedle)
53 const char *phaystack;
54 const char *pneedle;
56 register const unsigned char *haystack, *needle;
57 register chartype b, c;
58 #ifdef _LIBC
59 __locale_t loc = _NL_CURRENT_LOCALE;
60 #endif
62 haystack = (const unsigned char *) phaystack;
63 needle = (const unsigned char *) pneedle;
65 b = TOLOWER (*needle);
66 if (b != '\0')
68 haystack--; /* possible ANSI violation */
71 c = *++haystack;
72 if (c == '\0')
73 goto ret0;
75 while (TOLOWER (c) != (int) b);
77 c = TOLOWER (*++needle);
78 if (c == '\0')
79 goto foundneedle;
80 ++needle;
81 goto jin;
83 for (;;)
85 register chartype a;
86 register const unsigned char *rhaystack, *rneedle;
90 a = *++haystack;
91 if (a == '\0')
92 goto ret0;
93 if (TOLOWER (a) == (int) b)
94 break;
95 a = *++haystack;
96 if (a == '\0')
97 goto ret0;
98 shloop:
101 while (TOLOWER (a) != (int) b);
103 jin: a = *++haystack;
104 if (a == '\0')
105 goto ret0;
107 if (TOLOWER (a) != (int) c)
108 goto shloop;
110 rhaystack = haystack-- + 1;
111 rneedle = needle;
112 a = TOLOWER (*rneedle);
114 if (TOLOWER (*rhaystack) == (int) a)
117 if (a == '\0')
118 goto foundneedle;
119 ++rhaystack;
120 a = TOLOWER (*++needle);
121 if (TOLOWER (*rhaystack) != (int) a)
122 break;
123 if (a == '\0')
124 goto foundneedle;
125 ++rhaystack;
126 a = TOLOWER (*++needle);
128 while (TOLOWER (*rhaystack) == (int) a);
130 needle = rneedle; /* took the register-poor approach */
132 if (a == '\0')
133 break;
136 foundneedle:
137 return (char*) haystack;
138 ret0:
139 return 0;
142 weak_alias (__strcasestr, strcasestr)