annotate doc/glibc-functions/strcasestr.texi @ 39913:73d60b1f9c96

doc: Update for Solaris 11.4. * doc/**/*.texi: For bugs that exist in both Solaris 11.3 and 11.4, mention Solaris 11.4. * m4/printf.m4: Update comments about Solaris. * m4/log.m4: Likewise. * m4/log10.m4: Likewise. * m4/logb.m4: Likewise. * m4/logbf.m4: Likewise. * m4/logbl.m4: Likewise. * m4/rename.m4: Likewise. * m4/wcrtomb.m4: Likewise. * m4/hostent.m4: Likewise. * m4/servent.m4: Likewise.
author Bruno Haible <bruno@clisp.org>
date Sun, 14 Oct 2018 09:33:46 +0200
parents 461ea8ba270c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9635
3a9052fb8e95 New documentation of GNU libc functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 @node strcasestr
3a9052fb8e95 New documentation of GNU libc functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 @subsection @code{strcasestr}
3a9052fb8e95 New documentation of GNU libc functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 @findex strcasestr
3a9052fb8e95 New documentation of GNU libc functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4
9637
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
5 Gnulib module: strcasestr or strcasestr-simple
9635
3a9052fb8e95 New documentation of GNU libc functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6
9637
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
7 Portability problems fixed by either Gnulib module @code{strcasestr-simple}
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
8 or @code{strcasestr}:
9635
3a9052fb8e95 New documentation of GNU libc functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 @itemize
3a9052fb8e95 New documentation of GNU libc functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 @item
3a9052fb8e95 New documentation of GNU libc functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 This function is missing on some platforms:
11628
59047bad770e strstr, strcasestr: replace on platforms with broken memchr
Eric Blake <ebb9@byu.net>
parents: 10883
diff changeset
12 AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x,
18977
b8576602c861 doc: Update for MSVC 14.
Bruno Haible <bruno@clisp.org>
parents: 16254
diff changeset
13 mingw, MSVC 14, BeOS.
11628
59047bad770e strstr, strcasestr: replace on platforms with broken memchr
Eric Blake <ebb9@byu.net>
parents: 10883
diff changeset
14 @item
59047bad770e strstr, strcasestr: replace on platforms with broken memchr
Eric Blake <ebb9@byu.net>
parents: 10883
diff changeset
15 This function can trigger memchr bugs on some platforms:
59047bad770e strstr, strcasestr: replace on platforms with broken memchr
Eric Blake <ebb9@byu.net>
parents: 10883
diff changeset
16 glibc 2.10.
13772
1d8a613275c6 memmem, strstr, strcasestr: fix bug with long periodic needle
Eric Blake <eblake@redhat.com>
parents: 11628
diff changeset
17 @item
1d8a613275c6 memmem, strstr, strcasestr: fix bug with long periodic needle
Eric Blake <eblake@redhat.com>
parents: 11628
diff changeset
18 This function can trigger false positives for long periodic needles on
1d8a613275c6 memmem, strstr, strcasestr: fix bug with long periodic needle
Eric Blake <eblake@redhat.com>
parents: 11628
diff changeset
19 some platforms:
1d8a613275c6 memmem, strstr, strcasestr: fix bug with long periodic needle
Eric Blake <eblake@redhat.com>
parents: 11628
diff changeset
20 glibc 2.12, Cygwin 1.7.7.
39840
461ea8ba270c strstr, strcasestr: Add workaround against glibc-2.28 bug.
Bruno Haible <bruno@clisp.org>
parents: 19242
diff changeset
21 @item
461ea8ba270c strstr, strcasestr: Add workaround against glibc-2.28 bug.
Bruno Haible <bruno@clisp.org>
parents: 19242
diff changeset
22 This function may fail to find matches on some platforms:
461ea8ba270c strstr, strcasestr: Add workaround against glibc-2.28 bug.
Bruno Haible <bruno@clisp.org>
parents: 19242
diff changeset
23 glibc 2.28.
9635
3a9052fb8e95 New documentation of GNU libc functions.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 @end itemize
9637
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
25
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
26 Portability problems fixed by Gnulib module @code{strcasestr}:
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
27 @itemize
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
28 @item
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
29 This function has quadratic instead of linear worst-case complexity on some
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
30 platforms:
39913
73d60b1f9c96 doc: Update for Solaris 11.4.
Bruno Haible <bruno@clisp.org>
parents: 39840
diff changeset
31 glibc 2.8, FreeBSD 6.2, NetBSD 5.0, OpenBSD 4.0, Solaris 11.4.
9637
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
32 @end itemize
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
33
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
34 Portability problems not fixed by Gnulib:
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
35 @itemize
a2b9b20f3e04 Incorporate existing strcasestr doc into new doc structure.
Bruno Haible <bruno@clisp.org>
parents: 9635
diff changeset
36 @end itemize