Fix memmem test for mingw.
[gnulib.git] / doc / functions / memmem.texi
1 @node memmem
2 @section @code{memmem}
3 @findex memmem
4
5 Unspecified by POSIX, but comparable to @code{strstr}.
6
7 Gnulib module: memmem
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function fails to return the start of the haystack for an empty
13 needle on some platforms:
14 Cygwin 1.5.x
15
16 @item
17 This function has quadratic instead of linear complexity on some
18 platforms:
19 glibc <= 2.6.1
20
21 @item
22 This function is missing on some platforms:
23 Mingw, OpenBSD 4.0
24 @end itemize
25
26 Portability problems not fixed by Gnulib:
27 @itemize
28 @end itemize