poll tests: Avoid test failure on BSD and Solaris systems.
[gnulib.git] / doc / posix-functions / strstr.texi
blobcdf448b4b006806c82ed8c27bb63052a6a83cd11
1 @node strstr
2 @section @code{strstr}
3 @findex strstr
5 POSIX specification:@* @url{https://pubs.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.13, FreeBSD 6.2, NetBSD 9.0, OpenBSD 4.0, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 11.4, Cygwin 1.5.x, mingw, MSVC 14.
30 @end itemize
32 Portability problems not fixed by Gnulib:
33 @itemize
34 @item
35 This function cannot work correctly on character strings in most multibyte
36 locales.  Gnulib provides an alternative function @code{mbsstr} that works
37 on character strings in all locales.
38 @end itemize