gettimeofday: port recent C++ fix to Emacs
[gnulib.git] / doc / posix-functions / strstr.texi
1 @node strstr
2 @section @code{strstr}
3 @findex strstr
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strstr.html}
6
7 Gnulib module: strstr or strstr-simple
8
9 Portability problems fixed by either Gnulib module @code{strstr-simple}
10 or @code{strstr}:
11 @itemize
12 @item
13 This function can trigger memchr bugs on some platforms:
14 glibc 2.10.
15 @item
16 This function can trigger false positives for long periodic needles on
17 some platforms:
18 glibc 2.12, Cygwin 1.7.7.
19 @end itemize
20
21 Portability problems fixed by Gnulib @code{strstr}:
22 @itemize
23 @item
24 This function has quadratic instead of linear worst-case complexity on some
25 platforms:
26 glibc 2.8, Mac OS X 10.5, FreeBSD 6.2, NetBSD 5.0, OpenBSD 4.0, AIX
27 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 11 2011-11, Cygwin 1.5.x, mingw, MSVC 9.
28 @end itemize
29
30 Portability problems not fixed by Gnulib:
31 @itemize
32 @item
33 This function cannot work correctly on character strings in most multibyte
34 locales.  Gnulib provides an alternative function @code{mbsstr} that works
35 on character strings in all locales.
36 @end itemize