doc: Update for Solaris 11.4.
[gnulib.git] / doc / posix-functions / strstr.texi
blobe74ed12475cbe9a1a998ec32468e8b77765f985b
1 @node strstr
2 @section @code{strstr}
3 @findex strstr
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strstr.html}
7 Gnulib module: strstr or strstr-simple
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 @item
20 This function may fail to find matches on some platforms:
21 glibc 2.28.
22 @end itemize
24 Portability problems fixed by Gnulib @code{strstr}:
25 @itemize
26 @item
27 This function has quadratic instead of linear worst-case complexity on some
28 platforms:
29 glibc 2.8, Mac OS X 10.5, FreeBSD 6.2, NetBSD 5.0, OpenBSD 4.0, AIX
30 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 11.4, Cygwin 1.5.x, mingw, MSVC 14.
31 @end itemize
33 Portability problems not fixed by Gnulib:
34 @itemize
35 @item
36 This function cannot work correctly on character strings in most multibyte
37 locales.  Gnulib provides an alternative function @code{mbsstr} that works
38 on character strings in all locales.
39 @end itemize