60cb174fb836bc67ac1f227711b3cb41aae3f31f
[gnulib.git] / doc / glibc-functions / memmem.texi
1 @node memmem
2 @subsection @code{memmem}
3 @findex memmem
4
5 Gnulib module: memmem or memmem-simple
6
7 Portability problems fixed by either Gnulib module @code{memmem-simple}
8 or @code{memmem}:
9 @itemize
10 @item
11 This function is missing on some platforms:
12 MacOS X 10.5, FreeBSD 5.2.1, OpenBSD 4.0, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
13 @item
14 This function has reversed arguments on some older platforms:
15 Linux libc 5.0.9
16 @item
17 This function can trigger false positives for long periodic needles on
18 some platforms:
19 glibc 2.12, Cygwin 1.7.7.
20 @end itemize
21
22 Portability problems fixed by Gnulib module @code{memmem}:
23 @itemize
24 @item
25 This function returns incorrect values in some cases, such as when
26 given an empty needle:
27 glibc <= 2.0, Cygwin 1.5.x.
28 @item
29 This function has quadratic instead of linear worst-case complexity on some
30 platforms:
31 glibc 2.8, FreeBSD 6.2, NetBSD 5.0, AIX 5.1, Solaris 11 2010-11, Cygwin 1.5.x.
32 @end itemize
33
34 Portability problems not fixed by Gnulib:
35 @itemize
36 @end itemize