Mercurial > hg > octave-kai > gnulib-hg
annotate MODULES.html.sh @ 17389:1d9362a18c34
Assume gnulib is checked out from Git, not CVS
In fact, access to the gnulib repository through CVS has been disabled,
or more precisely, got broken and was never restored; see:
<http://lists.gnu.org/archive/html/bug-gnulib/2013-05/msg00008.html>
Note that support for CVS is not removed completely and unthinkingly
by this change: only support for CVS checkouts of gnulib itself is
removed. For example, the 'bootstrap' script still cater to .cvsingore
files and CVS directories, for the benefit of those poor gnulib clients
still stuck with CVS. Ditto for the 'gnulib-tool' script itself.
* gnulib-tool: Simplify accordingly.
* posix-modules: Likewise.
* MODULES.html.sh: Likewise.
* doc/gnulib.texi: No longer mention the decommissioned CVS gnulib
repository.
* doc/gnulib-intro.texi: Likewise.
* doc/gnulib-readme.texi: Likewise.
* doc/gnulib-tool.texi: In the examples and explanations, refer to a
sample '.gitignore' file rather than a sample '.cvsignore'.
* NEWS: Update.
* m4/extensions.m4: While at it, remove a comment mistakenly referring
to "CVS Autoconf" rather than "git Autoconf".
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Acked-by: Paul Eggert <eggert@cs.ucla.edu>
author | Stefano Lattarini <stefano.lattarini@gmail.com> |
---|---|
date | Sat, 04 May 2013 10:30:14 +0200 |
parents | 8108e0239bb6 |
children |
rev | line source |
---|---|
4113 | 1 #!/bin/sh |
4137
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
2 # |
17249
e542fd46ad6f
maint: update all copyright year number ranges
Eric Blake <eblake@redhat.com>
parents:
17120
diff
changeset
|
3 # Copyright (C) 2002-2013 Free Software Foundation, Inc. |
4137
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
4 # |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
9170
diff
changeset
|
5 # This program is free software: you can redistribute it and/or modify |
4137
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
6 # it under the terms of the GNU General Public License as published by |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
9170
diff
changeset
|
7 # the Free Software Foundation; either version 3 of the License, or |
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
9170
diff
changeset
|
8 # (at your option) any later version. |
4137
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
9 # |
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
10 # This program is distributed in the hope that it will be useful, |
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
13 # GNU General Public License for more details. |
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
14 # |
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
15 # You should have received a copy of the GNU General Public License |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
9170
diff
changeset
|
16 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
4137
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
17 # |
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
18 |
10370 | 19 # Usage: MODULES.html.sh [--git-urls] > MODULES.html |
4113 | 20 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
21 # Extend the PATH so that gnulib-tool is found. |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
22 PATH=`dirname "$0"`:$PATH; export PATH |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
23 |
5979
5cc92ab8ce76
Use shortcut links to the POSIX specification.
Bruno Haible <bruno@clisp.org>
parents:
5965
diff
changeset
|
24 POSIX2001_URL='http://www.opengroup.org/susv3' |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
25 POSIX2008_URL='http://www.opengroup.org/onlinepubs/9699919799' |
4148
ea41e6b422a8
include `dirname $0` in PATH, to find gnulib-tool.
Karl Berry <karl@freefriends.org>
parents:
4137
diff
changeset
|
26 |
7849
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
27 repo_url_prefix= |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
28 repo_url_suffix= |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
29 if test $# != 0; then |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
30 case "$1" in |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
31 --git-urls) |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
32 # Generate URLs to the official gnulib git repository. |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
33 repo_url_prefix='http://git.sv.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;f=' |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
34 repo_url_suffix='' |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
35 ;; |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
36 esac |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
37 fi |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
38 # For sed replacements: Escape the '&'. |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
39 repo_url_suffix_repl=`echo "$repo_url_suffix" | sed -e 's,[&],\\\&,'` |
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
40 |
4113 | 41 sed_lt='s,<,\<,g' |
42 sed_gt='s,>,\>,g' | |
43 sed_escape_dot='s,\.,\\.,g' | |
44 sed_escape_slash='s,/,\\/,g' | |
45 trnl='\012' | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
46 sed_alt1='s,$,\\|,' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
47 sed_alt2='s,^\\|,\\(,' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
48 sed_alt3='s,\\|\\|$,\\),' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
49 posix_headers=`echo ' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
50 aio |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
51 arpa/inet |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
52 assert |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
53 complex |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
54 cpio |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
55 ctype |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
56 dirent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
57 dlfcn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
58 errno |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
59 fcntl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
60 fenv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
61 float |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
62 fmtmsg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
63 fnmatch |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
64 ftw |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
65 glob |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
66 grp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
67 iconv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
68 inttypes |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
69 iso646 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
70 langinfo |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
71 libgen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
72 limits |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
73 locale |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
74 math |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
75 monetary |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
76 mqueue |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
77 ndbm |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
78 net/if |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
79 netdb |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
80 netinet/in |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
81 netinet/tcp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
82 nl_types |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
83 poll |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
84 pthread |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
85 pwd |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
86 regex |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
87 sched |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
88 search |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
89 semaphore |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
90 setjmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
91 signal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
92 spawn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
93 stdarg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
94 stdbool |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
95 stddef |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
96 stdint |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
97 stdio |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
98 stdlib |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
99 string |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
100 strings |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
101 stropts |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
102 sys/ipc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
103 sys/mman |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
104 sys/msg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
105 sys/resource |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
106 sys/select |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
107 sys/sem |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
108 sys/shm |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
109 sys/socket |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
110 sys/stat |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
111 sys/statvfs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
112 sys/time |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
113 sys/times |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
114 sys/types |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
115 sys/uio |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
116 sys/un |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
117 sys/utsname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
118 sys/wait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
119 syslog |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
120 tar |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
121 termios |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
122 tgmath |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
123 time |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
124 trace |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
125 ulimit |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
126 unistd |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
127 utime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
128 utmpx |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
129 wchar |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
130 wctype |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
131 wordexp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
132 ' | sed -e "$sed_alt1" | tr -d "$trnl" | sed -e "$sed_alt2" -e "$sed_alt3"` |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
133 posix2001_headers=`echo ' |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
134 sys/timeb |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
135 ucontext |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
136 ' | sed -e "$sed_alt1" | tr -d "$trnl" | sed -e "$sed_alt2" -e "$sed_alt3"` |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
137 posix_functions=`echo ' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
138 FD_CLR |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
139 FD_ISSET |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
140 FD_SET |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
141 FD_ZERO |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
142 _Exit |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
143 _exit |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
144 _longjmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
145 _setjmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
146 _tolower |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
147 _toupper |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
148 a64l |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
149 abort |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
150 abs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
151 accept |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
152 access |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
153 acos |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
154 acosf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
155 acosh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
156 acoshf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
157 acoshl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
158 acosl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
159 aio_cancel |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
160 aio_error |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
161 aio_fsync |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
162 aio_read |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
163 aio_return |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
164 aio_suspend |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
165 aio_write |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
166 alarm |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
167 alphasort |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
168 asctime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
169 asctime_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
170 asin |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
171 asinf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
172 asinh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
173 asinhf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
174 asinhl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
175 asinl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
176 assert |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
177 atan |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
178 atan2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
179 atan2f |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
180 atan2l |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
181 atanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
182 atanh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
183 atanhf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
184 atanhl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
185 atanl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
186 atexit |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
187 atof |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
188 atoi |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
189 atol |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
190 atoll |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
191 basename |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
192 bind |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
193 bsearch |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
194 btowc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
195 cabs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
196 cabsf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
197 cabsl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
198 cacos |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
199 cacosf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
200 cacosh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
201 cacoshf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
202 cacoshl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
203 cacosl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
204 calloc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
205 carg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
206 cargf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
207 cargl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
208 casin |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
209 casinf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
210 casinh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
211 casinhf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
212 casinhl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
213 casinl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
214 catan |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
215 catanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
216 catanh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
217 catanhf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
218 catanhl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
219 catanl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
220 catclose |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
221 catgets |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
222 catopen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
223 cbrt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
224 cbrtf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
225 cbrtl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
226 ccos |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
227 ccosf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
228 ccosh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
229 ccoshf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
230 ccoshl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
231 ccosl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
232 ceil |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
233 ceilf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
234 ceill |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
235 cexp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
236 cexpf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
237 cexpl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
238 cfgetispeed |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
239 cfgetospeed |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
240 cfsetispeed |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
241 cfsetospeed |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
242 chdir |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
243 chmod |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
244 chown |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
245 cimag |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
246 cimagf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
247 cimagl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
248 clearerr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
249 clock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
250 clock_getcpuclockid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
251 clock_getres |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
252 clock_gettime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
253 clock_nanosleep |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
254 clock_settime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
255 clog |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
256 clogf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
257 clogl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
258 close |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
259 closedir |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
260 closelog |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
261 confstr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
262 conj |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
263 conjf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
264 conjl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
265 connect |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
266 copysign |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
267 copysignf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
268 copysignl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
269 cos |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
270 cosf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
271 cosh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
272 coshf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
273 coshl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
274 cosl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
275 cpow |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
276 cpowf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
277 cpowl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
278 cproj |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
279 cprojf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
280 cprojl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
281 creal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
282 crealf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
283 creall |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
284 creat |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
285 crypt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
286 csin |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
287 csinf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
288 csinh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
289 csinhf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
290 csinhl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
291 csinl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
292 csqrt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
293 csqrtf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
294 csqrtl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
295 ctan |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
296 ctanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
297 ctanh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
298 ctanhf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
299 ctanhl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
300 ctanl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
301 ctermid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
302 ctime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
303 ctime_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
304 daylight |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
305 dbm_clearerr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
306 dbm_close |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
307 dbm_delete |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
308 dbm_error |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
309 dbm_fetch |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
310 dbm_firstkey |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
311 dbm_nextkey |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
312 dbm_open |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
313 dbm_store |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
314 difftime |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
315 dirfd |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
316 dirname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
317 div |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
318 dlclose |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
319 dlerror |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
320 dlopen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
321 dlsym |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
322 dprintf |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
323 drand48 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
324 dup |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
325 dup2 |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
326 duplocale |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
327 encrypt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
328 endgrent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
329 endhostent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
330 endnetent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
331 endprotoent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
332 endpwent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
333 endservent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
334 endutxent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
335 environ |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
336 erand48 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
337 erf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
338 erfc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
339 erfcf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
340 erfcl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
341 erff |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
342 erfl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
343 errno |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
344 execl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
345 execle |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
346 execlp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
347 execv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
348 execve |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
349 execvp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
350 exit |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
351 exp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
352 exp2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
353 exp2f |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
354 exp2l |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
355 expf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
356 expl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
357 expm1 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
358 expm1f |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
359 expm1l |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
360 fabs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
361 fabsf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
362 fabsl |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
363 faccessat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
364 fattach |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
365 fchdir |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
366 fchmod |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
367 fchmodat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
368 fchown |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
369 fchownat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
370 fclose |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
371 fcntl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
372 fdatasync |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
373 fdetach |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
374 fdim |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
375 fdimf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
376 fdiml |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
377 fdopen |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
378 fdopendir |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
379 feclearexcept |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
380 fegetenv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
381 fegetexceptflag |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
382 fegetround |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
383 feholdexcept |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
384 feof |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
385 feraiseexcept |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
386 ferror |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
387 fesetenv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
388 fesetexceptflag |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
389 fesetround |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
390 fetestexcept |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
391 feupdateenv |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
392 fexecve |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
393 fflush |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
394 ffs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
395 fgetc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
396 fgetpos |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
397 fgets |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
398 fgetwc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
399 fgetws |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
400 fileno |
10598 | 401 flock |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
402 flockfile |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
403 floor |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
404 floorf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
405 floorl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
406 fma |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
407 fmaf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
408 fmal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
409 fmax |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
410 fmaxf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
411 fmaxl |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
412 fmemopen |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
413 fmin |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
414 fminf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
415 fminl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
416 fmod |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
417 fmodf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
418 fmodl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
419 fmtmsg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
420 fnmatch |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
421 fopen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
422 fork |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
423 fpathconf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
424 fpclassify |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
425 fprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
426 fputc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
427 fputs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
428 fputwc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
429 fputws |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
430 fread |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
431 free |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
432 freeaddrinfo |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
433 freelocale |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
434 freopen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
435 frexp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
436 frexpf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
437 frexpl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
438 fscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
439 fseek |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
440 fseeko |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
441 fsetpos |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
442 fstat |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
443 fstatat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
444 fstatvfs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
445 fsync |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
446 ftell |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
447 ftello |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
448 ftok |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
449 ftruncate |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
450 ftrylockfile |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
451 ftw |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
452 funlockfile |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
453 futimens |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
454 fwide |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
455 fwprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
456 fwrite |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
457 fwscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
458 gai_strerror |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
459 getaddrinfo |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
460 getc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
461 getc_unlocked |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
462 getchar |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
463 getchar_unlocked |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
464 getcwd |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
465 getdate |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
466 getdate_err |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
467 getdelim |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
468 getegid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
469 getenv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
470 geteuid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
471 getgid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
472 getgrent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
473 getgrgid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
474 getgrgid_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
475 getgrnam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
476 getgrnam_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
477 getgroups |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
478 gethostent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
479 gethostid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
480 gethostname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
481 getitimer |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
482 getline |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
483 getlogin |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
484 getlogin_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
485 getmsg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
486 getnameinfo |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
487 getnetbyaddr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
488 getnetbyname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
489 getnetent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
490 getopt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
491 getpeername |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
492 getpgid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
493 getpgrp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
494 getpid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
495 getpmsg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
496 getppid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
497 getpriority |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
498 getprotobyname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
499 getprotobynumber |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
500 getprotoent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
501 getpwent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
502 getpwnam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
503 getpwnam_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
504 getpwuid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
505 getpwuid_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
506 getrlimit |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
507 getrusage |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
508 gets |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
509 getservbyname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
510 getservbyport |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
511 getservent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
512 getsid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
513 getsockname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
514 getsockopt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
515 getsubopt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
516 gettimeofday |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
517 getuid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
518 getutxent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
519 getutxid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
520 getutxline |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
521 getwc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
522 getwchar |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
523 glob |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
524 globfree |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
525 gmtime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
526 gmtime_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
527 grantpt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
528 hcreate |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
529 hdestroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
530 hsearch |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
531 htonl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
532 htons |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
533 hypot |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
534 hypotf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
535 hypotl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
536 iconv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
537 iconv_close |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
538 iconv_open |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
539 if_freenameindex |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
540 if_indextoname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
541 if_nameindex |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
542 if_nametoindex |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
543 ilogb |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
544 ilogbf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
545 ilogbl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
546 imaxabs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
547 imaxdiv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
548 inet_addr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
549 inet_ntoa |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
550 inet_ntop |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
551 inet_pton |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
552 initstate |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
553 insque |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
554 ioctl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
555 isalnum |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
556 isalnum_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
557 isalpha |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
558 isalpha_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
559 isascii |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
560 isastream |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
561 isatty |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
562 isblank |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
563 isblank_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
564 iscntrl |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
565 iscntrl_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
566 isdigit |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
567 isdigit_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
568 isfinite |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
569 isgraph |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
570 isgraph_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
571 isgreater |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
572 isgreaterequal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
573 isinf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
574 isless |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
575 islessequal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
576 islessgreater |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
577 islower |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
578 islower_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
579 isnan |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
580 isnormal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
581 isprint |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
582 isprint_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
583 ispunct |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
584 ispunct_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
585 isspace |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
586 isspace_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
587 isunordered |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
588 isupper |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
589 isupper_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
590 iswalnum |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
591 iswalnum_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
592 iswalpha |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
593 iswalpha_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
594 iswblank |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
595 iswblank_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
596 iswcntrl |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
597 iswcntrl_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
598 iswctype |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
599 iswctype_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
600 iswdigit |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
601 iswdigit_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
602 iswgraph |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
603 iswgraph_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
604 iswlower |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
605 iswlower_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
606 iswprint |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
607 iswprint_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
608 iswpunct |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
609 iswpunct_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
610 iswspace |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
611 iswspace_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
612 iswupper |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
613 iswupper_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
614 iswxdigit |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
615 iswxdigit_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
616 isxdigit |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
617 isxdigit_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
618 j0 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
619 j1 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
620 jn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
621 jrand48 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
622 kill |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
623 killpg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
624 l64a |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
625 labs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
626 lchown |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
627 lcong48 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
628 ldexp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
629 ldexpf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
630 ldexpl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
631 ldiv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
632 lfind |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
633 lgamma |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
634 lgammaf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
635 lgammal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
636 link |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
637 linkat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
638 lio_listio |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
639 listen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
640 llabs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
641 lldiv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
642 llrint |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
643 llrintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
644 llrintl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
645 llround |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
646 llroundf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
647 llroundl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
648 localeconv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
649 localtime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
650 localtime_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
651 lockf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
652 log |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
653 log10 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
654 log10f |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
655 log10l |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
656 log1p |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
657 log1pf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
658 log1pl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
659 log2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
660 log2f |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
661 log2l |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
662 logb |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
663 logbf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
664 logbl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
665 logf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
666 logl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
667 longjmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
668 lrand48 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
669 lrint |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
670 lrintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
671 lrintl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
672 lround |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
673 lroundf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
674 lroundl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
675 lsearch |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
676 lseek |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
677 lstat |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
678 malloc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
679 mblen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
680 mbrlen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
681 mbrtowc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
682 mbsinit |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
683 mbsnrtowcs |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
684 mbsrtowcs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
685 mbstowcs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
686 mbtowc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
687 memccpy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
688 memchr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
689 memcmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
690 memcpy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
691 memmove |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
692 memset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
693 mkdir |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
694 mkdirat |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
695 mkdtemp |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
696 mkfifo |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
697 mkfifoat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
698 mknod |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
699 mknodat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
700 mkstemp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
701 mktime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
702 mlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
703 mlockall |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
704 mmap |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
705 modf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
706 modff |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
707 modfl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
708 mprotect |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
709 mq_close |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
710 mq_getattr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
711 mq_notify |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
712 mq_open |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
713 mq_receive |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
714 mq_send |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
715 mq_setattr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
716 mq_timedreceive |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
717 mq_timedsend |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
718 mq_unlink |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
719 mrand48 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
720 msgctl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
721 msgget |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
722 msgrcv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
723 msgsnd |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
724 msync |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
725 munlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
726 munlockall |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
727 munmap |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
728 nan |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
729 nanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
730 nanl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
731 nanosleep |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
732 nearbyint |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
733 nearbyintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
734 nearbyintl |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
735 newlocale |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
736 nextafter |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
737 nextafterf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
738 nextafterl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
739 nexttoward |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
740 nexttowardf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
741 nexttowardl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
742 nftw |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
743 nice |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
744 nl_langinfo |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
745 nl_langinfo_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
746 nrand48 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
747 ntohl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
748 ntohs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
749 open |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
750 open_memstream |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
751 open_wmemstream |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
752 openat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
753 opendir |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
754 openlog |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
755 optarg |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
756 opterr |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
757 optind |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
758 optopt |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
759 pathconf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
760 pause |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
761 pclose |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
762 perror |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
763 pipe |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
764 poll |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
765 popen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
766 posix_fadvise |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
767 posix_fallocate |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
768 posix_madvise |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
769 posix_mem_offset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
770 posix_memalign |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
771 posix_openpt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
772 posix_spawn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
773 posix_spawn_file_actions_addclose |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
774 posix_spawn_file_actions_adddup2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
775 posix_spawn_file_actions_addopen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
776 posix_spawn_file_actions_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
777 posix_spawn_file_actions_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
778 posix_spawnattr_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
779 posix_spawnattr_getflags |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
780 posix_spawnattr_getpgroup |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
781 posix_spawnattr_getschedparam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
782 posix_spawnattr_getschedpolicy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
783 posix_spawnattr_getsigdefault |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
784 posix_spawnattr_getsigmask |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
785 posix_spawnattr_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
786 posix_spawnattr_setflags |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
787 posix_spawnattr_setpgroup |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
788 posix_spawnattr_setschedparam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
789 posix_spawnattr_setschedpolicy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
790 posix_spawnattr_setsigdefault |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
791 posix_spawnattr_setsigmask |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
792 posix_spawnp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
793 posix_trace_attr_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
794 posix_trace_attr_getclockres |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
795 posix_trace_attr_getcreatetime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
796 posix_trace_attr_getgenversion |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
797 posix_trace_attr_getinherited |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
798 posix_trace_attr_getlogfullpolicy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
799 posix_trace_attr_getlogsize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
800 posix_trace_attr_getmaxdatasize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
801 posix_trace_attr_getmaxsystemeventsize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
802 posix_trace_attr_getmaxusereventsize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
803 posix_trace_attr_getname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
804 posix_trace_attr_getstreamfullpolicy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
805 posix_trace_attr_getstreamsize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
806 posix_trace_attr_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
807 posix_trace_attr_setinherited |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
808 posix_trace_attr_setlogfullpolicy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
809 posix_trace_attr_setlogsize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
810 posix_trace_attr_setmaxdatasize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
811 posix_trace_attr_setname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
812 posix_trace_attr_setstreamfullpolicy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
813 posix_trace_attr_setstreamsize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
814 posix_trace_clear |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
815 posix_trace_close |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
816 posix_trace_create |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
817 posix_trace_create_withlog |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
818 posix_trace_event |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
819 posix_trace_eventid_equal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
820 posix_trace_eventid_get_name |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
821 posix_trace_eventid_open |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
822 posix_trace_eventset_add |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
823 posix_trace_eventset_del |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
824 posix_trace_eventset_empty |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
825 posix_trace_eventset_fill |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
826 posix_trace_eventset_ismember |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
827 posix_trace_eventtypelist_getnext_id |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
828 posix_trace_eventtypelist_rewind |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
829 posix_trace_flush |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
830 posix_trace_get_attr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
831 posix_trace_get_filter |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
832 posix_trace_get_status |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
833 posix_trace_getnext_event |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
834 posix_trace_open |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
835 posix_trace_rewind |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
836 posix_trace_set_filter |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
837 posix_trace_shutdown |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
838 posix_trace_start |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
839 posix_trace_stop |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
840 posix_trace_timedgetnext_event |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
841 posix_trace_trid_eventid_open |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
842 posix_trace_trygetnext_event |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
843 posix_typed_mem_get_info |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
844 posix_typed_mem_open |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
845 pow |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
846 powf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
847 powl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
848 pread |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
849 printf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
850 pselect |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
851 psiginfo |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
852 psignal |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
853 pthread_atfork |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
854 pthread_attr_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
855 pthread_attr_getdetachstate |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
856 pthread_attr_getguardsize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
857 pthread_attr_getinheritsched |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
858 pthread_attr_getschedparam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
859 pthread_attr_getschedpolicy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
860 pthread_attr_getscope |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
861 pthread_attr_getstack |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
862 pthread_attr_getstacksize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
863 pthread_attr_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
864 pthread_attr_setdetachstate |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
865 pthread_attr_setguardsize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
866 pthread_attr_setinheritsched |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
867 pthread_attr_setschedparam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
868 pthread_attr_setschedpolicy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
869 pthread_attr_setscope |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
870 pthread_attr_setstack |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
871 pthread_attr_setstacksize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
872 pthread_barrier_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
873 pthread_barrier_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
874 pthread_barrier_wait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
875 pthread_barrierattr_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
876 pthread_barrierattr_getpshared |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
877 pthread_barrierattr_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
878 pthread_barrierattr_setpshared |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
879 pthread_cancel |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
880 pthread_cleanup_pop |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
881 pthread_cleanup_push |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
882 pthread_cond_broadcast |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
883 pthread_cond_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
884 pthread_cond_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
885 pthread_cond_signal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
886 pthread_cond_timedwait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
887 pthread_cond_wait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
888 pthread_condattr_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
889 pthread_condattr_getclock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
890 pthread_condattr_getpshared |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
891 pthread_condattr_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
892 pthread_condattr_setclock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
893 pthread_condattr_setpshared |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
894 pthread_create |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
895 pthread_detach |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
896 pthread_equal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
897 pthread_exit |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
898 pthread_getconcurrency |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
899 pthread_getcpuclockid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
900 pthread_getschedparam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
901 pthread_getspecific |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
902 pthread_join |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
903 pthread_key_create |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
904 pthread_key_delete |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
905 pthread_kill |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
906 pthread_mutex_consistent |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
907 pthread_mutex_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
908 pthread_mutex_getprioceiling |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
909 pthread_mutex_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
910 pthread_mutex_lock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
911 pthread_mutex_setprioceiling |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
912 pthread_mutex_timedlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
913 pthread_mutex_trylock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
914 pthread_mutex_unlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
915 pthread_mutexattr_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
916 pthread_mutexattr_getprioceiling |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
917 pthread_mutexattr_getprotocol |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
918 pthread_mutexattr_getpshared |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
919 pthread_mutexattr_getrobust |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
920 pthread_mutexattr_gettype |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
921 pthread_mutexattr_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
922 pthread_mutexattr_setprioceiling |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
923 pthread_mutexattr_setprotocol |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
924 pthread_mutexattr_setpshared |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
925 pthread_mutexattr_setrobust |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
926 pthread_mutexattr_settype |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
927 pthread_once |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
928 pthread_rwlock_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
929 pthread_rwlock_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
930 pthread_rwlock_rdlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
931 pthread_rwlock_timedrdlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
932 pthread_rwlock_timedwrlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
933 pthread_rwlock_tryrdlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
934 pthread_rwlock_trywrlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
935 pthread_rwlock_unlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
936 pthread_rwlock_wrlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
937 pthread_rwlockattr_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
938 pthread_rwlockattr_getpshared |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
939 pthread_rwlockattr_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
940 pthread_rwlockattr_setpshared |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
941 pthread_self |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
942 pthread_setcancelstate |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
943 pthread_setcanceltype |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
944 pthread_setconcurrency |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
945 pthread_setschedparam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
946 pthread_setschedprio |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
947 pthread_setspecific |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
948 pthread_sigmask |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
949 pthread_spin_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
950 pthread_spin_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
951 pthread_spin_lock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
952 pthread_spin_trylock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
953 pthread_spin_unlock |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
954 pthread_testcancel |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
955 ptsname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
956 putc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
957 putc_unlocked |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
958 putchar |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
959 putchar_unlocked |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
960 putenv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
961 putmsg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
962 putpmsg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
963 puts |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
964 pututxline |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
965 putwc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
966 putwchar |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
967 pwrite |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
968 qsort |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
969 raise |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
970 rand |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
971 rand_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
972 random |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
973 read |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
974 readdir |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
975 readdir_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
976 readlink |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
977 readlinkat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
978 readv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
979 realloc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
980 realpath |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
981 recv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
982 recvfrom |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
983 recvmsg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
984 regcomp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
985 regerror |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
986 regexec |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
987 regfree |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
988 remainder |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
989 remainderf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
990 remainderl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
991 remove |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
992 remque |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
993 remquo |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
994 remquof |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
995 remquol |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
996 rename |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
997 renameat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
998 rewind |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
999 rewinddir |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1000 rint |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1001 rintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1002 rintl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1003 rmdir |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1004 round |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1005 roundf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1006 roundl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1007 scalbln |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1008 scalblnf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1009 scalblnl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1010 scalbn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1011 scalbnf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1012 scalbnl |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1013 scandir |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1014 scanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1015 sched_get_priority_max |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1016 sched_get_priority_min |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1017 sched_getparam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1018 sched_getscheduler |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1019 sched_rr_get_interval |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1020 sched_setparam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1021 sched_setscheduler |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1022 sched_yield |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1023 seed48 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1024 seekdir |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1025 select |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1026 sem_close |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1027 sem_destroy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1028 sem_getvalue |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1029 sem_init |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1030 sem_open |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1031 sem_post |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1032 sem_timedwait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1033 sem_trywait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1034 sem_unlink |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1035 sem_wait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1036 semctl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1037 semget |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1038 semop |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1039 send |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1040 sendmsg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1041 sendto |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1042 setbuf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1043 setegid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1044 setenv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1045 seteuid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1046 setgid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1047 setgrent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1048 sethostent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1049 setitimer |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1050 setjmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1051 setkey |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1052 setlocale |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1053 setlogmask |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1054 setnetent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1055 setpgid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1056 setpgrp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1057 setpriority |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1058 setprotoent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1059 setpwent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1060 setregid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1061 setreuid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1062 setrlimit |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1063 setservent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1064 setsid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1065 setsockopt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1066 setstate |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1067 setuid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1068 setutxent |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1069 setvbuf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1070 shm_open |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1071 shm_unlink |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1072 shmat |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1073 shmctl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1074 shmdt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1075 shmget |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1076 shutdown |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1077 sigaction |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1078 sigaddset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1079 sigaltstack |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1080 sigdelset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1081 sigemptyset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1082 sigfillset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1083 sighold |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1084 sigignore |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1085 siginterrupt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1086 sigismember |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1087 siglongjmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1088 signal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1089 signbit |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1090 signgam |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1091 sigpause |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1092 sigpending |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1093 sigprocmask |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1094 sigqueue |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1095 sigrelse |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1096 sigset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1097 sigsetjmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1098 sigsuspend |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1099 sigtimedwait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1100 sigwait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1101 sigwaitinfo |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1102 sin |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1103 sinf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1104 sinh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1105 sinhf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1106 sinhl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1107 sinl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1108 sleep |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1109 snprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1110 sockatmark |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1111 socket |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1112 socketpair |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1113 sprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1114 sqrt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1115 sqrtf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1116 sqrtl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1117 srand |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1118 srand48 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1119 srandom |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1120 sscanf |
5979
5cc92ab8ce76
Use shortcut links to the POSIX specification.
Bruno Haible <bruno@clisp.org>
parents:
5965
diff
changeset
|
1121 stat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1122 statvfs |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1123 stderr |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1124 stdin |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1125 stdout |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1126 stpcpy |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1127 stpncpy |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1128 strcasecmp |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1129 strcasecmp_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1130 strcat |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1131 strchr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1132 strcmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1133 strcoll |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1134 strcoll_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1135 strcpy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1136 strcspn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1137 strdup |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1138 strerror |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1139 strerror_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1140 strerror_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1141 strfmon |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1142 strfmon_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1143 strftime |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1144 strftime_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1145 strlen |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1146 strncasecmp |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1147 strncasecmp_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1148 strncat |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1149 strncmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1150 strncpy |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1151 strndup |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1152 strnlen |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1153 strpbrk |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1154 strptime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1155 strrchr |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1156 strsignal |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1157 strspn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1158 strstr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1159 strtod |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1160 strtof |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1161 strtoimax |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1162 strtok |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1163 strtok_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1164 strtol |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1165 strtold |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1166 strtoll |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1167 strtoul |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1168 strtoull |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1169 strtoumax |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1170 strxfrm |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1171 strxfrm_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1172 swab |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1173 swprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1174 swscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1175 symlink |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1176 symlinkat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1177 sync |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1178 sysconf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1179 syslog |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1180 system |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1181 tan |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1182 tanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1183 tanh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1184 tanhf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1185 tanhl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1186 tanl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1187 tcdrain |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1188 tcflow |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1189 tcflush |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1190 tcgetattr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1191 tcgetpgrp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1192 tcgetsid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1193 tcsendbreak |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1194 tcsetattr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1195 tcsetpgrp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1196 tdelete |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1197 telldir |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1198 tempnam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1199 tfind |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1200 tgamma |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1201 tgammaf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1202 tgammal |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1203 time |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1204 timer_create |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1205 timer_delete |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1206 timer_getoverrun |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1207 timer_gettime |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1208 timer_settime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1209 times |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1210 timezone |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1211 tmpfile |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1212 tmpnam |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1213 toascii |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1214 tolower |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1215 tolower_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1216 toupper |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1217 toupper_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1218 towctrans |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1219 towctrans_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1220 towlower |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1221 towlower_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1222 towupper |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1223 towupper_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1224 trunc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1225 truncate |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1226 truncf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1227 truncl |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1228 tsearch |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1229 ttyname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1230 ttyname_r |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1231 twalk |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1232 tzname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1233 tzset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1234 ulimit |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1235 umask |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1236 uname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1237 ungetc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1238 ungetwc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1239 unlink |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1240 unlinkat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1241 unlockpt |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1242 unsetenv |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1243 uselocale |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1244 utime |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1245 utimensat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1246 utimes |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1247 va_arg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1248 va_copy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1249 va_end |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1250 va_start |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1251 vdprintf |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1252 vfprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1253 vfscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1254 vfwprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1255 vfwscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1256 vprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1257 vscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1258 vsnprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1259 vsprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1260 vsscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1261 vswprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1262 vswscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1263 vwprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1264 vwscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1265 wait |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1266 waitid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1267 waitpid |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1268 wcpcpy |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1269 wcpncpy |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1270 wcrtomb |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1271 wcscasecmp |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1272 wcscasecmp_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1273 wcscat |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1274 wcschr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1275 wcscmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1276 wcscoll |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1277 wcscoll_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1278 wcscpy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1279 wcscspn |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1280 wcsdup |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1281 wcsftime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1282 wcslen |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1283 wcsncasecmp |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1284 wcsncasecmp_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1285 wcsncat |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1286 wcsncmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1287 wcsncpy |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1288 wcsnlen |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1289 wcsnrtombs |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1290 wcspbrk |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1291 wcsrchr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1292 wcsrtombs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1293 wcsspn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1294 wcsstr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1295 wcstod |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1296 wcstof |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1297 wcstoimax |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1298 wcstok |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1299 wcstol |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1300 wcstold |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1301 wcstoll |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1302 wcstombs |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1303 wcstoul |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1304 wcstoull |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1305 wcstoumax |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1306 wcswidth |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1307 wcsxfrm |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1308 wcsxfrm_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1309 wctob |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1310 wctomb |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1311 wctrans |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1312 wctrans_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1313 wctype |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1314 wctype_l |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1315 wcwidth |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1316 wmemchr |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1317 wmemcmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1318 wmemcpy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1319 wmemmove |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1320 wmemset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1321 wordexp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1322 wordfree |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1323 wprintf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1324 write |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1325 writev |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1326 wscanf |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1327 y0 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1328 y1 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1329 yn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1330 ' | sed -e "$sed_alt1" | tr -d "$trnl" | sed -e "$sed_alt2" -e "$sed_alt3"` |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1331 posix2001_functions=`echo ' |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1332 bcmp |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1333 bcopy |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1334 bsd_signal |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1335 bzero |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1336 ecvt |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1337 fcvt |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1338 ftime |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1339 gcvt |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1340 getcontext |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1341 gethostbyaddr |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1342 gethostbyname |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1343 getwd |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1344 h_errno |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1345 index |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1346 makecontext |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1347 mktemp |
12355 | 1348 pread |
10867
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1349 pthread_attr_getstackaddr |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1350 pthread_attr_setstackaddr |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1351 rindex |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1352 scalb |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1353 setcontext |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1354 swapcontext |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1355 ualarm |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1356 usleep |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1357 vfork |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1358 wcswcs |
08d977c4e513
Change MODULES.html to refer to POSIX:2008 where possible.
Bruno Haible <bruno@clisp.org>
parents:
10830
diff
changeset
|
1359 ' | sed -e "$sed_alt1" | tr -d "$trnl" | sed -e "$sed_alt2" -e "$sed_alt3"` |
4113 | 1360 |
1361 indent="" | |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1362 seen_modules= |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1363 seen_files= |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1364 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1365 # func_exit STATUS |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1366 # exit with status |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1367 func_exit () |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1368 { |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1369 (exit $1); exit $1 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1370 } |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1371 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1372 # func_tmpdir |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1373 # creates a temporary directory. |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1374 # Sets variable |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1375 # - tmp pathname of freshly created temporary directory |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1376 func_tmpdir () |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1377 { |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1378 # Use the environment variable TMPDIR, falling back to /tmp. This allows |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1379 # users to specify a different temporary directory, for example, if their |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1380 # /tmp is filled up or too small. |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1381 : ${TMPDIR=/tmp} |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1382 { |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1383 # Use the mktemp program if available. If not available, hide the error |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1384 # message. |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1385 tmp=`(umask 077 && mktemp -d "$TMPDIR/MDXXXXXX") 2>/dev/null` && |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1386 test -n "$tmp" && test -d "$tmp" |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1387 } || |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1388 { |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1389 # Use a simple mkdir command. It is guaranteed to fail if the directory |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1390 # already exists. $RANDOM is bash specific and expands to empty in shells |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1391 # other than bash, ksh and zsh. Its use does not increase security; |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1392 # rather, it minimizes the probability of failure in a very cluttered /tmp |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1393 # directory. |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1394 tmp=$TMPDIR/MD$$-$RANDOM |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1395 (umask 077 && mkdir "$tmp") |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1396 } || |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1397 { |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1398 echo "$0: cannot create a temporary directory in $TMPDIR" >&2 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1399 func_exit 1 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1400 } |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1401 } |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1402 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1403 # func_append var value |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1404 # appends the given value to the shell variable var. |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1405 if ( foo=bar; foo+=baz && test "$foo" = barbaz ) >/dev/null 2>&1; then |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1406 # Use bash's += operator. It reduces complexity of appending repeatedly to |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1407 # a single variable from O(n^2) to O(n). |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1408 func_append () |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1409 { |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1410 eval "$1+=\"\$2\"" |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1411 } |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1412 else |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1413 func_append () |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1414 { |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1415 eval "$1=\"\$$1\$2\"" |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1416 } |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1417 fi |
4113 | 1418 |
1419 # func_echo line | |
1420 # outputs line with indentation. | |
1421 func_echo () | |
1422 { | |
1423 echo "${indent}$*" | |
1424 } | |
1425 | |
1426 # func_indent | |
1427 # increases the indentation. | |
1428 func_indent () | |
1429 { | |
1430 indent="$indent " | |
1431 } | |
1432 | |
1433 # func_unindent | |
1434 # decreases the indentation. | |
1435 func_unindent () | |
1436 { | |
1437 indent=`echo "$indent" | sed -e 's/ $//'` | |
1438 } | |
1439 | |
1440 # func_begin tag [attribute...] | |
1441 # opens a HTML tag. | |
1442 func_begin () | |
1443 { | |
1444 func_echo "<$*>" | |
1445 func_indent | |
1446 } | |
1447 | |
1448 # func_end tag | |
1449 # closes a HTML tag. | |
1450 func_end () | |
1451 { | |
1452 func_unindent | |
1453 func_echo "</$1>" | |
1454 } | |
1455 | |
1456 # func_wrap tag [attribute...] | |
1457 # encloses $element in a HTML tag, without line breaks. | |
1458 func_wrap () | |
1459 { | |
1460 element="<$*>${element}</$1>" | |
1461 } | |
1462 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1463 # func_section_wrap sectiontag |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1464 # encloses $element in a HTML tag referring to the given tag. |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1465 func_section_wrap () |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1466 { |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1467 if test -n "$in_toc"; then |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1468 func_wrap A "HREF=\"#$1\"" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1469 else |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1470 func_wrap A "NAME=\"$1\"" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1471 fi |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1472 } |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1473 |
4113 | 1474 # func_begin_table |
1475 func_begin_table () | |
1476 { | |
1477 func_begin TABLE | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1478 if test -z "$in_toc"; then |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1479 func_begin TR |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1480 func_echo "<TH ALIGN=LEFT>modules/" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1481 func_echo "<TH ALIGN=LEFT>lib/" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1482 func_echo "<TH ALIGN=LEFT>lib/" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1483 func_echo "<TH ALIGN=LEFT>m4/" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1484 func_echo "<TH ALIGN=LEFT> " |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1485 func_end TR |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1486 func_begin TR |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1487 func_echo "<TH ALIGN=LEFT>Module" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1488 func_echo "<TH ALIGN=LEFT>Header" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1489 func_echo "<TH ALIGN=LEFT>Implementation" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1490 func_echo "<TH ALIGN=LEFT>Autoconf macro" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1491 func_echo "<TH ALIGN=LEFT>Depends on" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1492 func_end TR |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1493 fi |
4113 | 1494 } |
1495 | |
1496 # func_module module | |
1497 func_module () | |
1498 { | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1499 sed_remove_trailing_empty_line='${ |
4137
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
1500 /^$/d |
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
1501 }' |
723a376ddac5
MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents:
4113
diff
changeset
|
1502 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1503 if test -n "$in_toc"; then |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1504 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1505 func_begin TR "WIDTH=\"100%\"" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1506 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1507 element='<A HREF="#module='$1'">'$1'</A>' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1508 func_echo "<TD ALIGN=LEFT VALIGN=TOP WIDTH=\"20%\">$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1509 |
9550
6bc27027a2d6
Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents:
9478
diff
changeset
|
1510 # Rendering the description: |
6bc27027a2d6
Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents:
9478
diff
changeset
|
1511 # - Change the symbol() syntax as suitable for documentation, removing the |
6bc27027a2d6
Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents:
9478
diff
changeset
|
1512 # parentheses (as per GNU standards, section "GNU Manuals"). |
6bc27027a2d6
Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents:
9478
diff
changeset
|
1513 # - Flag the remaining symbol() constructs as errors. |
6bc27027a2d6
Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents:
9478
diff
changeset
|
1514 # - Change 'xxx' to <CODE>xxx</CODE>. |
16017
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1515 sed_extract_element=' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1516 '$sed_lt' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1517 '$sed_gt' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1518 '$sed_remove_trailing_empty_line' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1519 s,^, , |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1520 s,$, , |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1521 s,\([^a-zA-Z_]\)'$posix_functions'() \(function\|macro\),\1<A HREF="'$POSIX2008_URL'/functions/\2.html">\2</A> \3,g |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1522 s,\([^a-zA-Z_]\)'$posix_functions' \(function\|macro\),\1<A HREF="'$POSIX2008_URL'/functions/\2.html">\2</A> \3,g |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1523 s,\([^a-zA-Z_]\)'$posix_functions'(),\1<A HREF="'$POSIX2008_URL'/functions/\2.html">\2</A> <SPAN STYLE="color:#FF0000;">what?? If you mean a function\, please say so.</SPAN>,g |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1524 s,\([^a-zA-Z_]\)'$posix2001_functions'() \(function\|macro\),\1<A HREF="'$POSIX2001_URL'xsh/\2.html">\2</A> \3,g |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1525 s,\([^a-zA-Z_]\)'$posix2001_functions' \(function\|macro\),\1<A HREF="'$POSIX2001_URL'xsh/\2.html">\2</A> \3,g |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1526 s,\([^a-zA-Z_]\)'$posix2001_functions'(),\1<A HREF="'$POSIX2001_URL'xsh/\2.html">\2</A> <SPAN STYLE="color:#FF0000;">what?? If you mean a function\, please say so.</SPAN>,g |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1527 s,\([^a-zA-Z_]\)\([a-zA-Z_][a-zA-Z0-9_]*\)() \(function\|macro\),\1\2 \3,g |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1528 s,\([^a-zA-Z_]\)\([a-zA-Z_][a-zA-Z0-9_]*\)(),\1\2 <SPAN STYLE="color:#FF0000;">what?? If you mean a function\, please say so.</SPAN>,g |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1529 s, '"'"'\([a-zA-Z0-9_ -]*\)'"'"'\([^a-zA-Z0-9_]\), <CODE>\1</CODE>\2,g |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1530 s,^ ,, |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1531 s, $,, |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1532 ' |
7325 | 1533 element=`gnulib-tool --extract-description $1 \ |
16017
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1534 | LC_ALL=C sed -e "$sed_extract_element"` |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1535 func_echo "<TD ALIGN=LEFT VALIGN=TOP WIDTH=\"80%\">$element" |
4113 | 1536 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1537 func_end TR |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1538 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1539 else |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1540 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1541 func_begin TR |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1542 |
7849
d750c916cbf5
Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents:
7848
diff
changeset
|
1543 element='<A NAME="module='$1'"></A><A HREF="'$repo_url_prefix'modules/'$1$repo_url_suffix'">'$1'</A>' |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1544 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1545 |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1546 includes=`gnulib-tool --extract-include-directive $1` |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1547 files=`gnulib-tool --extract-filelist $1 \ |
8635
1007931cdf70
(func_module): missing '.
Karl Berry <karl@freefriends.org>
parents:
8598
diff
changeset
|
1548 | grep -v '^m4/gnulib-common\.m4$'` |
16017
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1549 sed_extract_element=' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1550 '$sed_lt' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1551 '$sed_gt' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1552 '$sed_remove_trailing_empty_line' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1553 s,^#include "\(.*\)"$,#include "<A HREF="'$repo_url_prefix'lib/\1'$repo_url_suffix_repl'">\1</A>", |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1554 s,^#include <'$posix_headers'\.h>$,#include \<<A HREF="'$POSIX2008_URL'/basedefs/\1.h.html">\1.h</A>\>, |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1555 s,<A HREF="'$POSIX2008_URL'/basedefs/\([a-zA-Z0-9_]*\)/\([a-zA-Z0-9_]*\)\.h\.html">,<A HREF="'$POSIX2008_URL'/basedefs/\1_\2.h.html">, |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1556 s,^#include <'$posix2001_headers'\.h>$,#include \<<A HREF="'$POSIX2001_URL'xbd/\1.h.html">\1.h</A>\>, |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1557 s/$/<BR>/ |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1558 ' |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1559 element=`echo "$includes" \ |
16017
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1560 | LC_ALL=C sed -e "$sed_extract_element" | tr -d "$trnl" \ |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1561 | sed -e 's/<BR>$//'` |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1562 test -n "$element" || element='---' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1563 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element" |
4113 | 1564 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1565 sed_choose_unconditional_nonstandard_include='s,^#include "\(.*\)"$,\1,p' |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1566 includefile=`echo "$includes" \ |
7325 | 1567 | sed -n -e "$sed_choose_unconditional_nonstandard_include" \ |
1568 | sed -e "$sed_escape_dot" | tr -d "$trnl"` | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1569 sed_choose_lib_files='s,^lib/\(.*\)$,\1,p' |
16017
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1570 sed_extract_include=' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1571 \|^'"$includefile"'$|d |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1572 s,^\(.*\)$,<A HREF="'$repo_url_prefix'lib/\1'$repo_url_suffix_repl'">\1</A>, |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1573 s/$/<BR>/ |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1574 ' |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1575 element=`echo "$files" \ |
7325 | 1576 | sed -e '/^$/d' \ |
1577 | sed -n -e "$sed_choose_lib_files" \ | |
16017
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1578 | sed -e "$sed_extract_include" \ |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1579 | tr -d "$trnl" | sed -e 's/<BR>$//'` |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1580 test -n "$element" || element='---' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1581 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element" |
4113 | 1582 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1583 sed_choose_m4_files='s,^m4/\(.*\)$,\1,p' |
16017
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1584 sed_extract_repo_url=' |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1585 /^onceonly/d |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1586 s,^\(.*\)$,<A HREF="'$repo_url_prefix'm4/\1'$repo_url_suffix_repl'">\1</A>, |
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1587 ' |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1588 element=`(echo "$files" \ |
7325 | 1589 | sed -e "$sed_remove_trailing_empty_line" \ |
1590 | sed -n -e "$sed_choose_m4_files" \ | |
16017
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
1591 | sed -e "$sed_extract_repo_url"; \ |
7325 | 1592 gnulib-tool --extract-autoconf-snippet $1 \ |
1593 | sed -e "$sed_remove_trailing_empty_line") \ | |
1594 | sed -e 's/$/<BR>/' | tr -d "$trnl" | sed -e 's/<BR>$//'` | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1595 test -n "$element" || element='---' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1596 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element" |
4113 | 1597 |
7325 | 1598 element=`gnulib-tool --extract-dependencies $1 \ |
1599 | sed -e "$sed_remove_trailing_empty_line" \ | |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1600 -e 's/$/<BR>/' | tr -d "$trnl" | sed -e 's/<BR>$//'` |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1601 test -n "$element" || element='---' |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1602 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element" |
4113 | 1603 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1604 func_end TR |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1605 |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1606 func_append seen_modules " $1" |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
1607 func_append seen_files " $files" |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1608 fi |
4113 | 1609 } |
1610 | |
1611 # func_end_table | |
1612 func_end_table () | |
1613 { | |
1614 func_end TABLE | |
1615 } | |
1616 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1617 # func_all_modules |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1618 func_all_modules () |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1619 { |
10459
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1620 element="Support for obsolete systems lacking ANSI C 89" |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1621 func_section_wrap ansic_sup_obsolete |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1622 func_wrap H2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1623 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1624 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1625 func_begin_table |
8190 | 1626 func_module stdlib |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1627 func_module strtol |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1628 func_module strtoul |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1629 func_module memcmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1630 func_module memcpy |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1631 func_module memmove |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1632 func_module memset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1633 func_module strcspn |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1634 func_module strpbrk |
10459
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1635 func_end_table |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1636 |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1637 func_echo 'These modules are not listed among dependencies below, for simplicity.' |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1638 func_echo 'If your package requires portability to old, obsolete systems, you need to list these modules explicitly among the modules to import through gnulib-tool.' |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1639 |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1640 element="Support for systems lacking ANSI C 89" |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1641 func_section_wrap ansic_sup |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1642 func_wrap H2 |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1643 func_echo "$element" |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1644 |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1645 func_begin_table |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1646 func_module atexit |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
1647 func_module strtod |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1648 func_module strerror |
14878
293a9a1292a9
strerror-override: avoid bloating errno module
Eric Blake <eblake@redhat.com>
parents:
14853
diff
changeset
|
1649 func_module strerror-override |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1650 func_module mktime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1651 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1652 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1653 element="Enhancements for ANSI C 89 functions" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1654 func_section_wrap ansic_enh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1655 func_wrap H2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1656 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1657 |
6267
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1658 element="Diagnostics <assert.h>" |
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1659 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1660 func_section_wrap ansic_enh_assert_diagnostics |
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1661 func_wrap H3 |
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1662 func_echo "$element" |
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1663 |
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1664 func_begin_table |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
1665 func_module assert |
6267
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1666 func_module verify |
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1667 func_end_table |
58c87cabeb1c
* modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6237
diff
changeset
|
1668 |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1669 element="Mathematics <math.h>" |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1670 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1671 func_section_wrap ansic_enh_math |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1672 func_wrap H3 |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1673 func_echo "$element" |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1674 |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1675 func_begin_table |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1676 func_module fpieee |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1677 func_end_table |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1678 |
8162 | 1679 element="Input/output <stdio.h>" |
1680 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
1681 func_section_wrap ansic_enh_stdio | |
1682 func_wrap H3 | |
1683 func_echo "$element" | |
1684 | |
1685 func_begin_table | |
8657
05f21166eb81
* lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
Eric Blake <ebb9@byu.net>
parents:
8637
diff
changeset
|
1686 func_module fflush |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1687 func_module fseterr |
8162 | 1688 func_module tmpfile |
1689 func_end_table | |
1690 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1691 element="Memory management functions <stdlib.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1692 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1693 func_section_wrap ansic_enh_stdlib_memory |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1694 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1695 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1696 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1697 func_begin_table |
13604 | 1698 func_module calloc-gnu |
4922 | 1699 func_module eealloc |
5004
0d750c5a291b
(func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents:
4940
diff
changeset
|
1700 func_module free |
13604 | 1701 func_module malloc-gnu |
1702 func_module realloc-gnu | |
5682
f8c8874bd832
New module 'pagealign_alloc'.
Bruno Haible <bruno@clisp.org>
parents:
5655
diff
changeset
|
1703 func_module pagealign_alloc |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1704 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1705 |
8046
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1706 element="Sorting functions <stdlib.h>" |
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1707 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1708 func_section_wrap ansic_enh_stdlib_sorting |
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1709 func_wrap H3 |
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1710 func_echo "$element" |
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1711 |
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1712 func_begin_table |
13528 | 1713 func_module array-mergesort |
8046
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1714 func_module mpsort |
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1715 func_end_table |
d95ff1660f83
* MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7973
diff
changeset
|
1716 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1717 element="Date and time <time.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1718 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1719 func_section_wrap ansic_enh_time_datetime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1720 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1721 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1722 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1723 func_begin_table |
6492
f65821c002c5
(Date and time <time.h>): Add fprintftime.
Jim Meyering <jim@meyering.net>
parents:
6360
diff
changeset
|
1724 func_module fprintftime |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1725 func_module strftime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1726 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1727 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1728 element="Extra functions based on ANSI C 89" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1729 func_section_wrap ansic_ext |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1730 func_wrap H2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1731 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1732 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1733 element="Memory management functions <stdlib.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1734 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1735 func_section_wrap ansic_ext_stdlib_memory |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1736 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1737 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1738 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1739 func_begin_table |
4883
e36fe7f8dec3
Add xsize. Forgotten commit on 2003-11-04.
Bruno Haible <bruno@clisp.org>
parents:
4802
diff
changeset
|
1740 func_module xsize |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1741 func_module xalloc |
5203
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
1742 func_module xalloc-die |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1743 func_module alloca |
5273 | 1744 func_module alloca-opt |
8950
53b90318e324
Update after allocsa -> malloca renaming.
Bruno Haible <bruno@clisp.org>
parents:
8872
diff
changeset
|
1745 func_module malloca |
53b90318e324
Update after allocsa -> malloca renaming.
Bruno Haible <bruno@clisp.org>
parents:
8872
diff
changeset
|
1746 func_module xmalloca |
10068
c7189e3f4fa9
Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
10058
diff
changeset
|
1747 func_module xmemdup0 |
11173
af090b4101b4
New module 'safe-alloc'.
David Lutterkort <lutter@redhat.com>
parents:
10948
diff
changeset
|
1748 func_module safe-alloc |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1749 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1750 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1751 element="Integer arithmetic functions <stdlib.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1752 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1753 func_section_wrap ansic_ext_stdlib_arith |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1754 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1755 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1756 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1757 func_begin_table |
17037
abd788a78228
count-leading-zeros: new module
Eric Blake <eblake@redhat.com>
parents:
16952
diff
changeset
|
1758 func_module count-leading-zeros |
9122
f547a45baada
Improve name: "count-one-bits" is better than "popcount".
Ben Pfaff <blp@gnu.org>
parents:
9116
diff
changeset
|
1759 func_module count-one-bits |
15390 | 1760 func_module ffs |
15428 | 1761 func_module ffsl |
1762 func_module ffsll | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1763 func_module gcd |
4207 | 1764 func_module minmax |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1765 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1766 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1767 element="Environment variables <stdlib.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1768 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1769 func_section_wrap ansic_ext_stdlib_env |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1770 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1771 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1772 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1773 func_begin_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1774 func_module putenv |
17316
8108e0239bb6
secure_getenv: new module
Paul Eggert <eggert@cs.ucla.edu>
parents:
17249
diff
changeset
|
1775 func_module secure_getenv |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1776 func_module setenv |
10057 | 1777 func_module unsetenv |
4215 | 1778 func_module xsetenv |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1779 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1780 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1781 element="Character handling <ctype.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1782 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1783 func_section_wrap ansic_ext_ctype |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1784 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1785 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1786 |
4221 | 1787 func_begin_table |
1788 func_module c-ctype | |
1789 func_end_table | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1790 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1791 element="String handling <string.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1792 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1793 func_section_wrap ansic_ext_string |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1794 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1795 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1796 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1797 func_begin_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1798 func_module bcopy |
11624
82b5a4d577af
docs: memchr is no longer obsolete
Eric Blake <ebb9@byu.net>
parents:
11520
diff
changeset
|
1799 func_module memchr |
9742 | 1800 func_module memchr2 |
13528 | 1801 func_module memcmp2 |
5317
55fa1d36be4b
(Extra functions based on ANSI C 89): Add memmem.
Simon Josefsson <simon@josefsson.org>
parents:
5292
diff
changeset
|
1802 func_module memmem |
9591 | 1803 func_module memmem-simple |
4456 | 1804 func_module mempcpy |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1805 func_module memrchr |
13557
8db1bc2a38a3
Rename module 'memxfrm' to 'amemxfrm'.
Bruno Haible <bruno@clisp.org>
parents:
13528
diff
changeset
|
1806 func_module amemxfrm |
10005 | 1807 func_module rawmemchr |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1808 func_module stpcpy |
4221 | 1809 func_module stpncpy |
6359 | 1810 func_module c-strcase |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1811 func_module strcase |
7935
6de574c3019f
New modules streq, c-strcaseeq.
Bruno Haible <bruno@clisp.org>
parents:
7919
diff
changeset
|
1812 func_module c-strcaseeq |
6360 | 1813 func_module c-strcasestr |
6058 | 1814 func_module strcasestr |
9623
69d9307c0aa0
Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents:
9600
diff
changeset
|
1815 func_module strcasestr-simple |
4388
889d35a53bf1
New modules strchrnul, argp.
Bruno Haible <bruno@clisp.org>
parents:
4294
diff
changeset
|
1816 func_module strchrnul |
7935
6de574c3019f
New modules streq, c-strcaseeq.
Bruno Haible <bruno@clisp.org>
parents:
7919
diff
changeset
|
1817 func_module streq |
14853
bdc85db78f47
strerror: drop strerror_r dependency
Eric Blake <eblake@redhat.com>
parents:
14796
diff
changeset
|
1818 func_module strerror_r-posix |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1819 func_module strnlen |
6047 | 1820 func_module strnlen1 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1821 func_module strndup |
5292 | 1822 func_module strsep |
9600
99268e709d31
Avoid quadratic strstr implementations.
Eric Blake <ebb9@byu.net>
parents:
9591
diff
changeset
|
1823 func_module strstr |
11629
5c7442472f11
strstr-simple: document new module
Eric Blake <ebb9@byu.net>
parents:
11624
diff
changeset
|
1824 func_module strstr-simple |
7209 | 1825 func_module c-strstr |
13604 | 1826 func_module astrxfrm |
7258
448f74ab8f39
New 'trim' module, from Davide Angelocola <davide.angelocola@tiscali.it>.
Bruno Haible <bruno@clisp.org>
parents:
7235
diff
changeset
|
1827 func_module trim |
9151 | 1828 func_module fstrcmp |
4587
db90c263cc55
Add an include file to module 'strndup'.
Bruno Haible <bruno@clisp.org>
parents:
4524
diff
changeset
|
1829 func_module xstrndup |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1830 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1831 |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1832 element="Mathematics <math.h>" |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1833 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1834 func_section_wrap ansic_ext_math |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1835 func_wrap H3 |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1836 func_echo "$element" |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1837 |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1838 func_begin_table |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1839 func_module printf-frexp |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1840 func_end_table |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1841 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1842 element="Numeric conversion functions <stdlib.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1843 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1844 func_section_wrap ansic_ext_stdlib_conv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1845 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1846 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1847 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1848 func_begin_table |
5203
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
1849 func_module c-strtod |
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
1850 func_module c-strtold |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1851 func_module xstrtod |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1852 func_module xstrtol |
12814 | 1853 func_module xstrtoll |
6912 | 1854 func_module xstrtold |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1855 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1856 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1857 element="Date and time <time.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1858 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1859 func_section_wrap ansic_ext_time_datetime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1860 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1861 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1862 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1863 func_begin_table |
14796
5fcbe73883bf
New module 'mktime-internal'.
Bruno Haible <bruno@clisp.org>
parents:
14701
diff
changeset
|
1864 func_module mktime-internal |
13769
896628c568fa
parse-datetime: better name than get_date
Eric Blake <eblake@redhat.com>
parents:
13750
diff
changeset
|
1865 func_module parse-datetime |
4616 | 1866 func_module timegm |
5004
0d750c5a291b
(func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents:
4940
diff
changeset
|
1867 func_module tzset |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1868 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1869 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1870 element="Input/Output <stdio.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1871 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1872 func_section_wrap ansic_ext_stdio |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1873 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1874 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1875 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1876 func_begin_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1877 func_module unlocked-io |
4715 | 1878 func_module fwriteerror |
4224
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1879 func_module vasnprintf |
83eabea25586
New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents:
4221
diff
changeset
|
1880 func_module vasprintf |
10057 | 1881 func_module xprintf |
5218 | 1882 func_module xvasprintf |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1883 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1884 |
4770 | 1885 element="Signal handling <signal.h>" |
1886 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
1887 func_section_wrap ansic_ext_signal | |
1888 func_wrap H3 | |
1889 func_echo "$element" | |
1890 | |
1891 func_begin_table | |
1892 func_module fatal-signal | |
5203
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
1893 func_module raise |
10057 | 1894 func_module strsignal |
4770 | 1895 func_end_table |
1896 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1897 element="Command-line arguments" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1898 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1899 func_section_wrap ansic_ext_argv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1900 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1901 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1902 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1903 func_begin_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1904 func_module argmatch |
11708 | 1905 func_module argv-iter |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1906 func_module version-etc |
5606
3a8740615faf
* MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5601
diff
changeset
|
1907 func_module version-etc-fsf |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1908 func_module long-options |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1909 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1910 |
6985
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1911 element="Container data structures" |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1912 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1913 func_section_wrap ansic_ext_container |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1914 func_wrap H3 |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1915 func_echo "$element" |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1916 |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1917 func_begin_table |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1918 func_module list |
13528 | 1919 func_module xlist |
6985
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1920 func_module array-list |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1921 func_module carray-list |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1922 func_module linked-list |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1923 func_module avltree-list |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1924 func_module rbtree-list |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1925 func_module linkedhash-list |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1926 func_module avltreehash-list |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1927 func_module rbtreehash-list |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
1928 func_module sublist |
13528 | 1929 func_module xsublist |
6985
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1930 func_module oset |
13528 | 1931 func_module xoset |
6985
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1932 func_module array-oset |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1933 func_module avltree-oset |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1934 func_module rbtree-oset |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1935 func_end_table |
411396e3f40c
New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents:
6970
diff
changeset
|
1936 |
8637
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1937 element="Cryptographic computations (low-level)" |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1938 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1939 func_section_wrap ansic_ext_crypto |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1940 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1941 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1942 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1943 func_begin_table |
8637
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1944 func_module crypto/arcfour |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1945 func_module crypto/arctwo |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1946 func_module crypto/des |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1947 func_module crypto/hmac-md5 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1948 func_module crypto/hmac-sha1 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1949 func_module crypto/md2 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1950 func_module crypto/md4 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1951 func_module crypto/md5 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1952 func_module crypto/rijndael |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1953 func_module crypto/sha1 |
10058
e65afb893b33
New modules: crypto/sha256, crypto/sha512 (from coreutils)
Jim Meyering <meyering@redhat.com>
parents:
10057
diff
changeset
|
1954 func_module crypto/sha256 |
e65afb893b33
New modules: crypto/sha256, crypto/sha512 (from coreutils)
Jim Meyering <meyering@redhat.com>
parents:
10057
diff
changeset
|
1955 func_module crypto/sha512 |
8637
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1956 func_end_table |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1957 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1958 element="Cryptographic computations (high-level)" |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1959 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1960 func_section_wrap ansic_ext_crypto2 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1961 func_wrap H3 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1962 func_echo "$element" |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1963 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1964 func_begin_table |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1965 func_module crypto/gc |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1966 func_module crypto/gc-arcfour |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1967 func_module crypto/gc-arctwo |
10057 | 1968 func_module crypto/gc-camellia |
8637
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1969 func_module crypto/gc-des |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1970 func_module crypto/gc-hmac-md5 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1971 func_module crypto/gc-hmac-sha1 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1972 func_module crypto/gc-md2 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1973 func_module crypto/gc-md4 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1974 func_module crypto/gc-md5 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1975 func_module crypto/gc-pbkdf2-sha1 |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1976 func_module crypto/gc-random |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1977 func_module crypto/gc-rijndael |
dae0cc6e8465
2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8635
diff
changeset
|
1978 func_module crypto/gc-sha1 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1979 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1980 |
10650
c205b195801d
ignore-value: new module
Jim Meyering <meyering@redhat.com>
parents:
10644
diff
changeset
|
1981 element="Compiler warning management" |
c205b195801d
ignore-value: new module
Jim Meyering <meyering@redhat.com>
parents:
10644
diff
changeset
|
1982 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
13840
4a556ba5903b
Fix copy/paste bug: Use unique name for compiler warnings.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
13769
diff
changeset
|
1983 func_section_wrap ansic_ext_compwarn |
10650
c205b195801d
ignore-value: new module
Jim Meyering <meyering@redhat.com>
parents:
10644
diff
changeset
|
1984 func_wrap H3 |
c205b195801d
ignore-value: new module
Jim Meyering <meyering@redhat.com>
parents:
10644
diff
changeset
|
1985 func_echo "$element" |
c205b195801d
ignore-value: new module
Jim Meyering <meyering@redhat.com>
parents:
10644
diff
changeset
|
1986 |
c205b195801d
ignore-value: new module
Jim Meyering <meyering@redhat.com>
parents:
10644
diff
changeset
|
1987 func_begin_table |
c205b195801d
ignore-value: new module
Jim Meyering <meyering@redhat.com>
parents:
10644
diff
changeset
|
1988 func_module ignore-value |
c205b195801d
ignore-value: new module
Jim Meyering <meyering@redhat.com>
parents:
10644
diff
changeset
|
1989 func_end_table |
c205b195801d
ignore-value: new module
Jim Meyering <meyering@redhat.com>
parents:
10644
diff
changeset
|
1990 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1991 element="Misc" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1992 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1993 func_section_wrap ansic_ext_misc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1994 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1995 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1996 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
1997 func_begin_table |
15791 | 1998 func_module base32 |
5498 | 1999 func_module base64 |
6028
5c3c29f4daf9
Fix typo in last commit.
Simon Josefsson <simon@josefsson.org>
parents:
6027
diff
changeset
|
2000 func_module check-version |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2001 func_module crc |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2002 func_module diacrit |
9147
d5c437e55b50
* MODULES.html.sh: Add diffseq.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9122
diff
changeset
|
2003 func_module diffseq |
17057 | 2004 func_module execinfo |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2005 func_module getline |
6027
306d44610193
* MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
Simon Josefsson <simon@josefsson.org>
parents:
6002
diff
changeset
|
2006 func_module getdelim |
4460 | 2007 func_module getnline |
4463 | 2008 func_module getndelim2 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2009 func_module linebuffer |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2010 func_module memxor |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2011 func_module obstack |
10205
3384541effec
Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
10085
diff
changeset
|
2012 func_module obstack-printf |
3384541effec
Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
10085
diff
changeset
|
2013 func_module obstack-printf-posix |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2014 func_module hash-pjw |
17120
ac32fde6df85
hash-pjw-bare: new module
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents:
17093
diff
changeset
|
2015 func_module hash-pjw-bare |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2016 func_module hash |
6027
306d44610193
* MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
Simon Josefsson <simon@josefsson.org>
parents:
6002
diff
changeset
|
2017 func_module readline |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2018 func_module readtokens |
5203
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
2019 func_module readtokens0 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2020 func_module strverscmp |
10573 | 2021 func_module filevercmp |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2022 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2023 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2024 element="Support for systems lacking ISO C 99" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2025 func_section_wrap isoc_sup |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2026 func_wrap H2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2027 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2028 |
7564
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2029 element="Core language properties" |
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2030 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2031 func_section_wrap isoc_core_properties |
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2032 func_wrap H3 |
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2033 func_echo "$element" |
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2034 |
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2035 func_begin_table |
13528 | 2036 func_module alignof |
7610
e856370de785
* MODULES.html.sh (Core language properties): New module flexmember.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7606
diff
changeset
|
2037 func_module flexmember |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2038 func_module fpucw |
10057 | 2039 func_module func |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2040 func_module inline |
10271 | 2041 func_module longlong |
15418
e434caaeadb1
Rename module 'unused-parameter' to 'snippet/unused-parameter'.
Bruno Haible <bruno@clisp.org>
parents:
15417
diff
changeset
|
2042 func_module snippet/unused-parameter |
12483 | 2043 func_module va-args |
7564
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2044 func_module vararrays |
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2045 func_end_table |
a2d76523d6bc
* modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7557
diff
changeset
|
2046 |
5601
6445e932e417
(Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5598
diff
changeset
|
2047 element="Sizes of integer types <limits.h>" |
6445e932e417
(Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5598
diff
changeset
|
2048 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
6445e932e417
(Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5598
diff
changeset
|
2049 func_section_wrap isoc_sup_limits |
6445e932e417
(Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5598
diff
changeset
|
2050 func_wrap H3 |
6445e932e417
(Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5598
diff
changeset
|
2051 func_echo "$element" |
6445e932e417
(Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5598
diff
changeset
|
2052 |
6445e932e417
(Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5598
diff
changeset
|
2053 func_begin_table |
6027
306d44610193
* MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
Simon Josefsson <simon@josefsson.org>
parents:
6002
diff
changeset
|
2054 func_module size_max |
5601
6445e932e417
(Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5598
diff
changeset
|
2055 func_end_table |
6445e932e417
(Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5598
diff
changeset
|
2056 |
6774 | 2057 element="Variable arguments <stdarg.h>" |
2058 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2059 func_section_wrap isoc_sup_stdarg | |
2060 func_wrap H3 | |
2061 func_echo "$element" | |
2062 | |
2063 func_begin_table | |
2064 func_module stdarg | |
2065 func_end_table | |
2066 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2067 element="Boolean type and values <stdbool.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2068 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2069 func_section_wrap isoc_sup_stdbool |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2070 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2071 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2072 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2073 func_begin_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2074 func_module stdbool |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2075 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2076 |
11832
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2077 element="Basic types <stddef.h>" |
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2078 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2079 func_section_wrap isoc_sup_stddef |
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2080 func_wrap H3 |
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2081 func_echo "$element" |
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2082 |
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2083 func_begin_table |
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2084 func_module stddef |
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2085 func_end_table |
ff3dd373542b
stddef: fix NetBSD 5.0 NULL bug, rather than working around it
Eric Blake <ebb9@byu.net>
parents:
11787
diff
changeset
|
2086 |
5219 | 2087 element="Integer types and values <stdint.h>" |
2088 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2089 func_section_wrap isoc_sup_stdint | |
2090 func_wrap H3 | |
2091 func_echo "$element" | |
2092 | |
2093 func_begin_table | |
2094 func_module stdint | |
2095 func_end_table | |
2096 | |
5283
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2097 element="Input/output <stdio.h>" |
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2098 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2099 func_section_wrap isoc_sup_stdio |
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2100 func_wrap H3 |
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2101 func_echo "$element" |
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2102 |
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2103 func_begin_table |
8209 | 2104 func_module stdio |
5283
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2105 func_module snprintf |
5340 | 2106 func_module vsnprintf |
5283
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2107 func_end_table |
dc424f1dfc9f
snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5282
diff
changeset
|
2108 |
13528 | 2109 element="Process control, Numeric conversion functions <stdlib.h>" |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2110 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
13528 | 2111 func_section_wrap isoc_sup_stdlib_procconv |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2112 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2113 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2114 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2115 func_begin_table |
13528 | 2116 func_module _Exit |
2117 func_module atoll | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2118 func_module strtoll |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2119 func_module strtoull |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2120 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2121 |
13528 | 2122 element="Unibyte characters <ctype.h>" |
2123 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2124 func_section_wrap isoc_sup_ctype | |
2125 func_wrap H3 | |
2126 func_echo "$element" | |
2127 | |
2128 func_begin_table | |
2129 func_module ctype | |
2130 func_end_table | |
2131 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2132 element="Functions for greatest-width integer types <inttypes.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2133 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2134 func_section_wrap isoc_sup_inttypes |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2135 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2136 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2137 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2138 func_begin_table |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2139 func_module imaxabs |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2140 func_module imaxdiv |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2141 func_module inttypes |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2142 func_module strtoimax |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2143 func_module strtoumax |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2144 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2145 |
13528 | 2146 element="String handling <string.h>" |
2147 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2148 func_section_wrap isoc_sup_string | |
2149 func_wrap H3 | |
2150 func_echo "$element" | |
2151 | |
2152 func_begin_table | |
2153 func_module strncat | |
2154 func_end_table | |
2155 | |
7860
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2156 element="Extended multibyte and wide character utilities <wchar.h>" |
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2157 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2158 func_section_wrap isoc_sup_wchar |
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2159 func_wrap H3 |
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2160 func_echo "$element" |
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2161 |
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2162 func_begin_table |
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2163 func_module wchar |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2164 func_module btowc |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2165 func_module wctob |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2166 func_module mbsinit |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2167 func_module mbrlen |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2168 func_module mbrtowc |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2169 func_module mbsrtowcs |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2170 func_module wcrtomb |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2171 func_module wcsrtombs |
7860
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2172 func_end_table |
708da4ac0ccd
Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents:
7849
diff
changeset
|
2173 |
7738 | 2174 element="Wide character classification and mapping utilities <wctype.h>" |
2175 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2176 func_section_wrap isoc_sup_wctype | |
2177 func_wrap H3 | |
2178 func_echo "$element" | |
2179 | |
2180 func_begin_table | |
2181 func_module wctype | |
2182 func_end_table | |
2183 | |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2184 element="Characteristics of floating types <float.h>" |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2185 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2186 func_section_wrap isoc_sup_float |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2187 func_wrap H3 |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2188 func_echo "$element" |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2189 |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2190 func_begin_table |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2191 func_module float |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2192 func_end_table |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2193 |
4240 | 2194 element="Mathematics <math.h>" |
2195 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2196 func_section_wrap isoc_sup_math | |
2197 func_wrap H3 | |
2198 func_echo "$element" | |
2199 | |
2200 func_begin_table | |
13528 | 2201 func_module acos |
2202 func_module acosl | |
2203 func_module asin | |
2204 func_module asinl | |
2205 func_module atan | |
2206 func_module atan2 | |
2207 func_module atanl | |
2208 func_module cbrt | |
10057 | 2209 func_module ceil |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2210 func_module ceilf |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2211 func_module ceill |
13528 | 2212 func_module copysign |
2213 func_module cos | |
2214 func_module cosh | |
2215 func_module cosl | |
2216 func_module erf | |
2217 func_module erfc | |
2218 func_module exp | |
2219 func_module expl | |
2220 func_module fabs | |
10057 | 2221 func_module floor |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2222 func_module floorf |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2223 func_module floorl |
13528 | 2224 func_module fmod |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2225 func_module frexp |
10057 | 2226 func_module frexp-nolibm |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2227 func_module frexpl |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2228 func_module frexpl-nolibm |
13528 | 2229 func_module hypot |
9414
1c5d0b856e8b
Implement 'isfinite' module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
9375
diff
changeset
|
2230 func_module isfinite |
10287 | 2231 func_module isinf |
10267 | 2232 func_module isnan |
10266 | 2233 func_module isnanf |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2234 func_module isnanf-nolibm |
10265 | 2235 func_module isnand |
9646
a113e473cc98
Rename isnan, applicable to 'double' only, to isnand.
Bruno Haible <bruno@clisp.org>
parents:
9623
diff
changeset
|
2236 func_module isnand-nolibm |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2237 func_module isnanl |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2238 func_module isnanl-nolibm |
13528 | 2239 func_module j0 |
2240 func_module j1 | |
2241 func_module jn | |
2242 func_module ldexp | |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2243 func_module ldexpl |
13528 | 2244 func_module lgamma |
2245 func_module log | |
2246 func_module log10 | |
2247 func_module log1p | |
2248 func_module logb | |
2249 func_module logl | |
8188 | 2250 func_module math |
4240 | 2251 func_module mathl |
13528 | 2252 func_module modf |
2253 func_module nextafter | |
2254 func_module pow | |
2255 func_module remainder | |
2256 func_module rint | |
9375
96fea5b2eb11
Implement 'round', 'roundf', 'roundl' modules.
Ben Pfaff <blp@cs.stanford.edu>
parents:
9319
diff
changeset
|
2257 func_module round |
96fea5b2eb11
Implement 'round', 'roundf', 'roundl' modules.
Ben Pfaff <blp@cs.stanford.edu>
parents:
9319
diff
changeset
|
2258 func_module roundf |
96fea5b2eb11
Implement 'round', 'roundf', 'roundl' modules.
Ben Pfaff <blp@cs.stanford.edu>
parents:
9319
diff
changeset
|
2259 func_module roundl |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2260 func_module signbit |
13528 | 2261 func_module sin |
2262 func_module sinh | |
2263 func_module sinl | |
2264 func_module sqrt | |
2265 func_module sqrtl | |
2266 func_module tan | |
2267 func_module tanh | |
2268 func_module tanl | |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2269 func_module trunc |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2270 func_module truncf |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2271 func_module truncl |
13528 | 2272 func_module y0 |
2273 func_module y1 | |
2274 func_module yn | |
4240 | 2275 func_end_table |
2276 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2277 element="Enhancements for ISO C 99 functions" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2278 func_section_wrap isoc_enh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2279 func_wrap H2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2280 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2281 |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2282 element="Input/output <stdio.h>" |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2283 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2284 func_section_wrap isoc_enh_stdio |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2285 func_wrap H3 |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2286 func_echo "$element" |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2287 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2288 func_begin_table |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2289 func_module printf-safe |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2290 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2291 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2292 element="Extra functions based on ISO C 99" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2293 func_section_wrap isoc_ext |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2294 func_wrap H2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2295 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2296 |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2297 element="Mathematics <math.h>" |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2298 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2299 func_section_wrap isoc_ext_math |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2300 func_wrap H3 |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2301 func_echo "$element" |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2302 |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2303 func_begin_table |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2304 func_module printf-frexpl |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2305 func_end_table |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2306 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2307 element="Numeric conversion functions <stdlib.h>" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2308 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2309 func_section_wrap isoc_ext_stdlib_conv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2310 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2311 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2312 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2313 func_begin_table |
14169
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
14160
diff
changeset
|
2314 func_module dtoastr |
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
14160
diff
changeset
|
2315 func_module ftoastr |
6657
25df81cf2f51
* modules/intprops: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6555
diff
changeset
|
2316 func_module intprops |
5004
0d750c5a291b
(func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents:
4940
diff
changeset
|
2317 func_module inttostr |
14169
d5718604e475
ftoastr: split into 3 modules ftoastr, dtoastr, ldtoastr
Paul Eggert <eggert@cs.ucla.edu>
parents:
14160
diff
changeset
|
2318 func_module ldtoastr |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2319 func_module xstrtoimax |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2320 func_module xstrtoumax |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2321 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2322 |
6044 | 2323 element="Extended multibyte and wide character utilities <wchar.h>" |
2324 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2325 func_section_wrap isoc_ext_wchar_mb | |
2326 func_wrap H3 | |
2327 func_echo "$element" | |
2328 | |
2329 func_begin_table | |
2330 func_module mbchar | |
6045 | 2331 func_module mbiter |
6055 | 2332 func_module mbuiter |
6046 | 2333 func_module mbfile |
6044 | 2334 func_end_table |
2335 | |
16239
91f53c1e1787
doc: C11 and C++11 are now official
Paul Eggert <eggert@cs.ucla.edu>
parents:
16201
diff
changeset
|
2336 element="Support for systems lacking ISO C11" |
91f53c1e1787
doc: C11 and C++11 are now official
Paul Eggert <eggert@cs.ucla.edu>
parents:
16201
diff
changeset
|
2337 func_section_wrap c11_sup |
15392 | 2338 func_wrap H2 |
2339 func_echo "$element" | |
2340 | |
2341 element="Core language properties" | |
2342 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
16239
91f53c1e1787
doc: C11 and C++11 are now official
Paul Eggert <eggert@cs.ucla.edu>
parents:
16201
diff
changeset
|
2343 func_section_wrap c11_core_properties |
15392 | 2344 func_wrap H3 |
2345 func_echo "$element" | |
2346 | |
15994 | 2347 func_begin_table |
2348 func_module stdalign | |
2349 func_end_table | |
2350 | |
10946
00a9697d6a0e
Change subtitles to refer to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
10867
diff
changeset
|
2351 element="Support for obsolete systems lacking POSIX:2008" |
10459
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2352 func_section_wrap posix_sup_obsolete |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2353 func_wrap H2 |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2354 func_echo "$element" |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2355 |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2356 func_begin_table |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2357 func_module strdup |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2358 func_end_table |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2359 |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2360 func_echo 'These modules are not listed among dependencies below, for simplicity.' |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2361 func_echo 'If your package requires portability to old, obsolete systems, you need to list these modules explicitly among the modules to import through gnulib-tool.' |
2819ac4d82da
Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents:
10456
diff
changeset
|
2362 |
10947 | 2363 element="Support for systems lacking POSIX:2008" |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2364 func_section_wrap posix_sup |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2365 func_wrap H2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2366 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2367 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2368 func_begin_table |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2369 func_module accept |
13528 | 2370 func_module alphasort |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2371 func_module arpa_inet |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2372 func_module bind |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2373 func_module calloc-posix |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2374 func_module chown |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2375 func_module close |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2376 func_module connect |
13528 | 2377 func_module dirent |
2378 func_module dprintf | |
2379 func_module dprintf-posix | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2380 func_module dup2 |
13528 | 2381 func_module duplocale |
10057 | 2382 func_module environ |
10425 | 2383 func_module errno |
7863 | 2384 func_module fchdir |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2385 func_module fclose |
11876
cc0527e5d2f4
fcntl-h: rename from fcntl, in preparation for fcntl(2)
Eric Blake <ebb9@byu.net>
parents:
11850
diff
changeset
|
2386 func_module fcntl-h |
13528 | 2387 func_module fcntl |
15622 | 2388 func_module fdatasync |
10598 | 2389 func_module flock |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2390 func_module fopen |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2391 func_module fprintf-posix |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2392 func_module freopen |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2393 func_module fseek |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2394 func_module fseeko |
10565 | 2395 func_module fsync |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2396 func_module ftell |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2397 func_module ftello |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2398 func_module ftruncate |
12162 | 2399 func_module futimens |
5408 | 2400 func_module getaddrinfo |
5203
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
2401 func_module getcwd |
14629 | 2402 func_module getcwd-lgpl |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2403 func_module getgroups |
4763
0d7756a5da9e
Put gethostname into the right section.
Bruno Haible <bruno@clisp.org>
parents:
4762
diff
changeset
|
2404 func_module gethostname |
13528 | 2405 func_module getlogin |
5889
ae0c1303f175
* MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
Derek R. Price <derek@ximbiot.com>
parents:
5886
diff
changeset
|
2406 func_module getlogin_r |
13528 | 2407 func_module getopt-posix |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2408 func_module getpeername |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2409 func_module getsockname |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2410 func_module getsockopt |
5138 | 2411 func_module getsubopt |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2412 func_module gettimeofday |
13528 | 2413 func_module grantpt |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2414 func_module hostent |
13528 | 2415 func_module iconv-h |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2416 func_module iconv_open |
5825 | 2417 func_module inet_ntop |
6850 | 2418 func_module inet_pton |
13528 | 2419 func_module ioctl |
2420 func_module isblank | |
2421 func_module langinfo | |
12068 | 2422 func_module link |
2423 func_module linkat | |
2424 func_module listen | |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2425 func_module locale |
8872 | 2426 func_module lseek |
2427 func_module lstat | |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2428 func_module malloc-posix |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2429 func_module mbsnrtowcs |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2430 func_module mkdir |
7575
483757159eb6
* MODULES.html.sh: Document tempname.
Eric Blake <ebb9@byu.net>
parents:
7564
diff
changeset
|
2431 func_module mkdtemp |
12266 | 2432 func_module mkfifo |
12267 | 2433 func_module mknod |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2434 func_module mkstemp |
17077 | 2435 func_module net_if |
10644
ba5c6a0c8928
Add netdb.h replacement module.
Simon Josefsson <simon@josefsson.org>
parents:
10600
diff
changeset
|
2436 func_module netdb |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2437 func_module netinet_in |
13528 | 2438 func_module nl_langinfo |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2439 func_module open |
10433 | 2440 func_module perror |
4242
eec6ba9ed532
New module poll, from Paolo Bonzini <bonzini@gnu.org>.
Bruno Haible <bruno@clisp.org>
parents:
4240
diff
changeset
|
2441 func_module poll |
11848
9e3299dad578
popen: fix cygwin 1.5 bug when stdin closed
Eric Blake <ebb9@byu.net>
parents:
11832
diff
changeset
|
2442 func_module popen |
15961 | 2443 func_module posix_openpt |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2444 func_module posix_spawn |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2445 func_module posix_spawnattr_destroy |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2446 func_module posix_spawnattr_getflags |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2447 func_module posix_spawnattr_getpgroup |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2448 func_module posix_spawnattr_getschedparam |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2449 func_module posix_spawnattr_getschedpolicy |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2450 func_module posix_spawnattr_getsigdefault |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2451 func_module posix_spawnattr_getsigmask |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2452 func_module posix_spawnattr_init |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2453 func_module posix_spawnattr_setflags |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2454 func_module posix_spawnattr_setpgroup |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2455 func_module posix_spawnattr_setschedparam |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2456 func_module posix_spawnattr_setschedpolicy |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2457 func_module posix_spawnattr_setsigdefault |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2458 func_module posix_spawnattr_setsigmask |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2459 func_module posix_spawn_file_actions_addclose |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2460 func_module posix_spawn_file_actions_adddup2 |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2461 func_module posix_spawn_file_actions_addopen |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2462 func_module posix_spawn_file_actions_destroy |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2463 func_module posix_spawn_file_actions_init |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2464 func_module posix_spawn-internal |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2465 func_module posix_spawnp |
13528 | 2466 func_module pread |
8872 | 2467 func_module printf-posix |
15344
bb72ef288fbe
pselect: document better
Paul Eggert <eggert@cs.ucla.edu>
parents:
15343
diff
changeset
|
2468 func_module pselect |
11431
4a2a6b0eadea
New modules nproc, pthread.
Paul Eggert <eggert@cs.ucla.edu>
parents:
11173
diff
changeset
|
2469 func_module pthread |
13528 | 2470 func_module ptsname |
2471 func_module pwrite | |
4405 | 2472 func_module readlink |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2473 func_module realloc-posix |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2474 func_module recv |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2475 func_module recvfrom |
12041
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
12040
diff
changeset
|
2476 func_module remove |
13528 | 2477 func_module scandir |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2478 func_module sched |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2479 func_module select |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2480 func_module send |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2481 func_module sendto |
13528 | 2482 func_module servent |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2483 func_module setsockopt |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2484 func_module shutdown |
15758
51a803e5cfdc
signal-h: Rename from signal.
Bruno Haible <bruno@clisp.org>
parents:
15622
diff
changeset
|
2485 func_module signal-h |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2486 func_module sleep |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2487 func_module snprintf-posix |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2488 func_module socket |
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2489 func_module spawn |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2490 func_module sprintf-posix |
12036
1762604ec0a7
stat: new module, for mingw bug
Eric Blake <ebb9@byu.net>
parents:
11975
diff
changeset
|
2491 func_module stat |
10456
a821fdd7b2b7
New module 'strdup-posix'.
Bruno Haible <bruno@clisp.org>
parents:
10433
diff
changeset
|
2492 func_module strdup-posix |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2493 func_module string |
10057 | 2494 func_module strings |
7575
483757159eb6
* MODULES.html.sh: Document tempname.
Eric Blake <ebb9@byu.net>
parents:
7564
diff
changeset
|
2495 func_module tempname |
8146
b31580167c2b
New module 'time', so that apps can include <time.h> as per
Paul Eggert <eggert@cs.ucla.edu>
parents:
8126
diff
changeset
|
2496 func_module time |
4621
3d28ad4e18e2
Add time_r module. Change timegm, mktime, and strftime to use localtime_r
Paul Eggert <eggert@cs.ucla.edu>
parents:
4616
diff
changeset
|
2497 func_module time_r |
10735
d3ffeb7d9a34
Add modules for sys/times.h header and times function.
Simon Josefsson <simon@josefsson.org>
parents:
10704
diff
changeset
|
2498 func_module times |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2499 func_module timespec |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2500 func_module nanosleep |
15343
107f8443e77a
pthread_sigmask: new module
Paul Eggert <eggert@cs.ucla.edu>
parents:
14878
diff
changeset
|
2501 func_module pthread_sigmask |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2502 func_module regex |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2503 func_module rename |
12099 | 2504 func_module renameat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2505 func_module rmdir |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2506 func_module search |
10229
29502a2dd08a
New module sigaction, for mingw.
Eric Blake <ebb9@byu.net>
parents:
10205
diff
changeset
|
2507 func_module sigaction |
7503 | 2508 func_module sigprocmask |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2509 func_module socklen |
6031 | 2510 func_module ssize_t |
8048
005cc63d6763
New module 'strptime'. Initial fixes.
Bruno Haible <bruno@clisp.org>
parents:
8046
diff
changeset
|
2511 func_module strptime |
5434 | 2512 func_module strtok_r |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2513 func_module sys_select |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2514 func_module sys_socket |
6899
4f743199c786
* MODULES.html.sh: Add sys_stat.
Eric Blake <ebb9@byu.net>
parents:
6889
diff
changeset
|
2515 func_module sys_stat |
7897
b7a83a69ac23
* MODULES.html.sh (Support for systems lacking POSIX:2001): New
Paul Eggert <eggert@cs.ucla.edu>
parents:
7882
diff
changeset
|
2516 func_module sys_time |
10735
d3ffeb7d9a34
Add modules for sys/times.h header and times function.
Simon Josefsson <simon@josefsson.org>
parents:
10704
diff
changeset
|
2517 func_module sys_times |
14598 | 2518 func_module sys_uio |
13528 | 2519 func_module sys_utsname |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2520 func_module sys_wait |
7585 | 2521 func_module tsearch |
13528 | 2522 func_module ttyname_r |
2523 func_module uname | |
6691
a5b9b6b26301
* MODULES.html.sh (Support for systems lacking POSIX:2001):
Paul Eggert <eggert@cs.ucla.edu>
parents:
6657
diff
changeset
|
2524 func_module unistd |
12040
e8108d5c7ca7
unlink: new module, for Solaris 9 bug
Eric Blake <ebb9@byu.net>
parents:
12036
diff
changeset
|
2525 func_module unlink |
13528 | 2526 func_module unlockpt |
12174 | 2527 func_module utimensat |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2528 func_module vasnprintf-posix |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2529 func_module vasprintf-posix |
13528 | 2530 func_module vdprintf |
2531 func_module vdprintf-posix | |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2532 func_module vfprintf-posix |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2533 func_module vprintf-posix |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2534 func_module vsnprintf-posix |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2535 func_module vsprintf-posix |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2536 func_module wcsnrtombs |
6878 | 2537 func_module wcwidth |
10948
21ec3c3507d9
Classify some recently added modules.
Bruno Haible <bruno@clisp.org>
parents:
10947
diff
changeset
|
2538 func_module write |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2539 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2540 |
10946
00a9697d6a0e
Change subtitles to refer to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
10867
diff
changeset
|
2541 element="Compatibility checks for POSIX:2008 functions" |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2542 func_section_wrap posix_compat |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2543 func_wrap H2 |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2544 func_echo "$element" |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2545 |
7194 | 2546 func_begin_table |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2547 func_module clock-time |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2548 func_module d-ino |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2549 func_module d-type |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2550 func_module link-follow |
7306 | 2551 func_module rename-dest-slash |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2552 func_module rmdir-errno |
15436
904d3cee5cc3
timer-time: A new module to check for timer_settime()
Pádraig Brady <P@draigBrady.com>
parents:
15428
diff
changeset
|
2553 func_module timer-time |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2554 func_module unlink-busy |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2555 func_module winsz-ioctl |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2556 func_module winsz-termios |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2557 func_end_table |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2558 |
10946
00a9697d6a0e
Change subtitles to refer to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
10867
diff
changeset
|
2559 element="Enhancements for POSIX:2008 functions" |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2560 func_section_wrap posix_enh |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2561 func_wrap H2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2562 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2563 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2564 func_begin_table |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2565 func_module chdir-long |
11936 | 2566 func_module dirent-safer |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2567 func_module dirname |
12212
8bf6ff9a34bd
dirname: split into dirname-lgpl
Eric Blake <ebb9@byu.net>
parents:
12193
diff
changeset
|
2568 func_module dirname-lgpl |
13528 | 2569 func_module getopt-gnu |
10057 | 2570 func_module iconv_open-utf |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2571 func_module unistd-safer |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2572 func_module fnmatch |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2573 func_module fnmatch-posix |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2574 func_module fnmatch-gnu |
5898
429b55c14554
* MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
Derek R. Price <derek@ximbiot.com>
parents:
5889
diff
changeset
|
2575 func_module glob |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2576 func_module exclude |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2577 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2578 |
10946
00a9697d6a0e
Change subtitles to refer to POSIX:2008.
Bruno Haible <bruno@clisp.org>
parents:
10867
diff
changeset
|
2579 element="Extra functions based on POSIX:2008" |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2580 func_section_wrap posix_ext |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2581 func_wrap H2 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2582 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2583 |
10057 | 2584 element="Input/output" |
2585 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2586 func_section_wrap posix_ext_stdio | |
2587 func_wrap H3 | |
2588 func_echo "$element" | |
2589 | |
2590 func_begin_table | |
2591 func_module xprintf-posix | |
2592 func_module xvasprintf-posix | |
2593 func_end_table | |
2594 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2595 element="Numeric conversion functions" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2596 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2597 func_section_wrap posix_ext_conv |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2598 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2599 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2600 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2601 func_begin_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2602 func_module human |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2603 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2604 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2605 element="File system functions" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2606 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2607 func_section_wrap posix_ext_filesys |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2608 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2609 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2610 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2611 func_begin_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2612 func_module acl |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2613 func_module areadlink |
9170
47acf8bc4225
finish mreadlink_with_size rename
Karl Berry <karl@freefriends.org>
parents:
9158
diff
changeset
|
2614 func_module areadlink-with-size |
12136 | 2615 func_module areadlinkat |
12138
e86f65584aae
areadlinkat-with-size: new module
Eric Blake <ebb9@byu.net>
parents:
12137
diff
changeset
|
2616 func_module areadlinkat-with-size |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2617 func_module backupfile |
5203
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
2618 func_module canonicalize |
7606
2ffea8d27e08
* MODULES.html.sh (File system functions): New module
Paul Eggert <eggert@cs.ucla.edu>
parents:
7585
diff
changeset
|
2619 func_module canonicalize-lgpl |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2620 func_module chdir-safer |
7044 | 2621 func_module clean-temp |
13528 | 2622 func_module concat-filename |
4269 | 2623 func_module copy-file |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2624 func_module fsusage |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2625 func_module dirfd |
7727
9711a2d74170
* lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7678
diff
changeset
|
2626 func_module double-slash-root |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2627 func_module euidaccess |
11945 | 2628 func_module faccessat |
11934
80567a8f98f8
fdopendir: split into its own module
Eric Blake <ebb9@byu.net>
parents:
11876
diff
changeset
|
2629 func_module fdopendir |
12193 | 2630 func_module fdutimensat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2631 func_module file-type |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2632 func_module fileblocks |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2633 func_module filemode |
8251
1e16373508e1
Rename module 'pathname' to 'filename'.
Bruno Haible <bruno@clisp.org>
parents:
8209
diff
changeset
|
2634 func_module filename |
5907 | 2635 func_module filenamecat |
12215
b1ff181f6269
filenamecat: split into filenamecat-lgpl
Eric Blake <ebb9@byu.net>
parents:
12212
diff
changeset
|
2636 func_module filenamecat-lgpl |
5872 | 2637 func_module fts |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2638 func_module isdir |
15443
7167d8365695
largefile: new module, replacing large-inode
Paul Eggert <eggert@cs.ucla.edu>
parents:
15441
diff
changeset
|
2639 func_module largefile |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
2640 func_module lchmod |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2641 func_module lchown |
6970
31455307b983
Fix mispelling in previous change: mkancestors -> mkancesdirs
Paul Eggert <eggert@cs.ucla.edu>
parents:
6969
diff
changeset
|
2642 func_module mkancesdirs |
11975 | 2643 func_module mkfifoat |
5907 | 2644 func_module mkdir-p |
12234
b45701f2ff71
mkstemps, mkostemps: new modules
Eric Blake <ebb9@byu.net>
parents:
12215
diff
changeset
|
2645 func_module mkostemp |
b45701f2ff71
mkstemps, mkostemps: new modules
Eric Blake <ebb9@byu.net>
parents:
12215
diff
changeset
|
2646 func_module mkostemps |
b45701f2ff71
mkstemps, mkostemps: new modules
Eric Blake <ebb9@byu.net>
parents:
12215
diff
changeset
|
2647 func_module mkstemps |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2648 func_module modechange |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2649 func_module mountlist |
7678
1757949a7c72
* MODULES.html.sh (File system functions): Add openat.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7656
diff
changeset
|
2650 func_module openat |
10057 | 2651 func_module openat-die |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2652 func_module pathmax |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2653 func_module read-file |
13604 | 2654 func_module readlinkat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2655 func_module same |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2656 func_module save-cwd |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2657 func_module savedir |
7312
796e1837ac66
* lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7306
diff
changeset
|
2658 func_module savewd |
10057 | 2659 func_module stat-macros |
6237
d81a8251a9b0
* MODULES.html.sh (File system functions): Add stat-time.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6113
diff
changeset
|
2660 func_module stat-time |
12056
e0c5d88f8c3b
symlink: new module, for Solaris 9 bug
Eric Blake <ebb9@byu.net>
parents:
12041
diff
changeset
|
2661 func_module symlink |
11956 | 2662 func_module symlinkat |
13528 | 2663 func_module sys_file |
2664 func_module sys_ioctl | |
7043 | 2665 func_module tmpdir |
5852 | 2666 func_module unlinkdir |
5203
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
2667 func_module utimecmp |
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
2668 func_module utimens |
8504
24420da38757
* MODULES.html.sh (File system functions): New module write-any-file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
8263
diff
changeset
|
2669 func_module write-any-file |
13528 | 2670 func_module xconcat-filename |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2671 func_module xgetcwd |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2672 func_module xreadlink |
12137 | 2673 func_module xreadlinkat |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2674 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2675 |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2676 element="File system as inode set" |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2677 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2678 func_section_wrap posix_ext_inodeset |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2679 func_wrap H3 |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2680 func_echo "$element" |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2681 |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2682 func_begin_table |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2683 func_module cycle-check |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2684 func_module dev-ino |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2685 func_module file-set |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2686 func_module hash-triple |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2687 func_module i-ring |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2688 func_module same-inode |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2689 func_end_table |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2690 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2691 element="File descriptor based Input/Output" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2692 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2693 func_section_wrap posix_ext_filedesc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2694 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2695 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2696 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2697 func_begin_table |
13528 | 2698 func_module dup3 |
2699 func_module fd-safer-flag | |
2700 func_module getdtablesize | |
6098
e334970e0ec6
(File descriptor based Input/Output): Add fcntl-safer.
Jim Meyering <jim@meyering.net>
parents:
6058
diff
changeset
|
2701 func_module fcntl-safer |
11937 | 2702 func_module openat-safer |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2703 func_module safe-read |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2704 func_module safe-write |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2705 func_module full-read |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2706 func_module full-write |
4273 | 2707 func_module binary-io |
7233
ec85aace506a
* modules/isapipe: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7209
diff
changeset
|
2708 func_module isapipe |
13923 | 2709 func_module pipe-posix |
13528 | 2710 func_module pipe2 |
2711 func_module pipe2-safer | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2712 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2713 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2714 element="File stream based Input/Output" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2715 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2716 func_section_wrap posix_ext_filestream |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2717 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2718 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2719 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2720 func_begin_table |
7046
5b0836e010ca
* MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents:
7044
diff
changeset
|
2721 func_module close-stream |
8674
72f80d715b09
Work around glibc's failure to reset seekable stdin on exit.
Eric Blake <ebb9@byu.net>
parents:
8670
diff
changeset
|
2722 func_module closein |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2723 func_module closeout |
9158 | 2724 func_module fbufmode |
7046
5b0836e010ca
* MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents:
7044
diff
changeset
|
2725 func_module fopen-safer |
5b0836e010ca
* MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents:
7044
diff
changeset
|
2726 func_module fpending |
9158 | 2727 func_module fpurge |
2728 func_module freadable | |
2729 func_module freadahead | |
8720
367787d55c9c
Implement freading and fwriting.
Eric Blake <ebb9@byu.net>
parents:
8674
diff
changeset
|
2730 func_module freading |
9727 | 2731 func_module freadptr |
9738 | 2732 func_module freadseek |
12246 | 2733 func_module freopen-safer |
9158 | 2734 func_module fwritable |
8720
367787d55c9c
Implement freading and fwriting.
Eric Blake <ebb9@byu.net>
parents:
8674
diff
changeset
|
2735 func_module fwriting |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2736 func_module getpass |
4490 | 2737 func_module getpass-gnu |
11850
9ebc8e9eca64
popen-safer: prevent popen from clobbering std descriptors
Eric Blake <ebb9@byu.net>
parents:
11848
diff
changeset
|
2738 func_module popen-safer |
7046
5b0836e010ca
* MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents:
7044
diff
changeset
|
2739 func_module stdlib-safer |
5b0836e010ca
* MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents:
7044
diff
changeset
|
2740 func_module tmpfile-safer |
12321
a5b7df5da800
xfreopen: new module, from coreutils
Jim Meyering <meyering@redhat.com>
parents:
12315
diff
changeset
|
2741 func_module xfreopen |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2742 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2743 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2744 element="Users and groups" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2745 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2746 func_section_wrap posix_ext_uidgid |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2747 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2748 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2749 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2750 func_begin_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2751 func_module getugroups |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2752 func_module group-member |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2753 func_module idcache |
12281
9c11ef292284
mgetgroups: new module, taken from coreutils
Eric Blake <ebb9@byu.net>
parents:
12267
diff
changeset
|
2754 func_module mgetgroups |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2755 func_module userspec |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2756 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2757 |
13528 | 2758 element="Security" |
2759 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2760 func_section_wrap posix_ext_security | |
2761 func_wrap H3 | |
2762 func_echo "$element" | |
2763 | |
2764 func_begin_table | |
2765 func_module idpriv-drop | |
2766 func_module idpriv-droptemp | |
2767 func_module priv-set | |
2768 func_end_table | |
2769 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2770 element="Date and time" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2771 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2772 func_section_wrap posix_ext_datetime |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2773 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2774 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2775 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2776 func_begin_table |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2777 func_module gethrxtime |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2778 func_module gettime |
12315 | 2779 func_module posixtm |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2780 func_module settime |
12315 | 2781 func_module usleep |
5203
489bbed47b3a
Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5138
diff
changeset
|
2782 func_module xnanosleep |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2783 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2784 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2785 element="Networking functions" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2786 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2787 func_section_wrap posix_ext_net |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2788 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2789 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2790 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2791 func_begin_table |
13528 | 2792 func_module accept4 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2793 func_module xgethostname |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2794 func_module canon-host |
10057 | 2795 func_module sockets |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2796 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2797 |
5994 | 2798 element="Multithreading" |
2799 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2800 func_section_wrap posix_ext_thread | |
2801 func_wrap H3 | |
2802 func_echo "$element" | |
2803 | |
2804 func_begin_table | |
10320 | 2805 func_module threadlib |
5994 | 2806 func_module lock |
6042 | 2807 func_module tls |
10327 | 2808 func_module thread |
10329 | 2809 func_module yield |
10324 | 2810 func_module cond |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2811 func_module openmp |
5994 | 2812 func_end_table |
2813 | |
10273 | 2814 element="Signal handling" |
2815 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
2816 func_section_wrap posix_ext_signal | |
2817 func_wrap H3 | |
2818 func_echo "$element" | |
2819 | |
2820 func_begin_table | |
2821 func_module c-stack | |
2822 func_module libsigsegv | |
2823 func_module sig2str | |
13528 | 2824 func_module sigpipe |
10382 | 2825 func_module sigpipe-die |
10273 | 2826 func_end_table |
2827 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2828 element="Internationalization functions" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2829 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2830 func_section_wrap posix_ext_i18n |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2831 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2832 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2833 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2834 func_begin_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2835 func_module gettext |
5965
cd3c62f1332e
Support programs like Emacs that use gnulib but not gettext.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5933
diff
changeset
|
2836 func_module gettext-h |
10085
6eeccac8ebca
New module 'propername', moved here from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
10080
diff
changeset
|
2837 func_module propername |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2838 func_module iconv |
7263
461dfc79ca17
New modules 'striconv' and 'xstriconv'.
Bruno Haible <bruno@clisp.org>
parents:
7258
diff
changeset
|
2839 func_module striconv |
461dfc79ca17
New modules 'striconv' and 'xstriconv'.
Bruno Haible <bruno@clisp.org>
parents:
7258
diff
changeset
|
2840 func_module xstriconv |
7882 | 2841 func_module striconveh |
13528 | 2842 func_module xstriconveh |
7919 | 2843 func_module striconveha |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2844 func_module localcharset |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2845 func_module hard-locale |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2846 func_module localename |
13528 | 2847 func_module mbmemcasecmp |
2848 func_module mbmemcasecoll | |
8126 | 2849 func_module mbslen |
8968 | 2850 func_module mbsnlen |
8083 | 2851 func_module mbschr |
8085 | 2852 func_module mbsrchr |
8088
56a0105d8cf3
New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents:
8085
diff
changeset
|
2853 func_module mbsstr |
8091
ebf2b19b5684
New module 'mbscasecmp'. strcasecmp is not expected to work with multibyte
Bruno Haible <bruno@clisp.org>
parents:
8088
diff
changeset
|
2854 func_module mbscasecmp |
8156 | 2855 func_module mbsncasecmp |
8159 | 2856 func_module mbspcasecmp |
8098
cc3f4a2db5b0
New module 'mbscasestr'. Reduced goal of 'strcasestr'.
Bruno Haible <bruno@clisp.org>
parents:
8091
diff
changeset
|
2857 func_module mbscasestr |
8103 | 2858 func_module mbscspn |
8104 | 2859 func_module mbspbrk |
8105 | 2860 func_module mbsspn |
8112 | 2861 func_module mbssep |
8106 | 2862 func_module mbstok_r |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2863 func_module mbswidth |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2864 func_module memcasecmp |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2865 func_module memcoll |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2866 func_module xmemcoll |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2867 func_module unicodeio |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2868 func_module rpmatch |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
2869 func_module yesno |
7791
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2870 func_module bison-i18n |
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2871 func_end_table |
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2872 |
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2873 element="Unicode string functions" |
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2874 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2875 func_section_wrap posix_ext_unicode |
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2876 func_wrap H3 |
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2877 func_echo "$element" |
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2878 |
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2879 func_begin_table |
11520
53ce4539660e
New module 'libunistring'.
Bruno Haible <bruno@clisp.org>
parents:
11442
diff
changeset
|
2880 func_module libunistring |
13528 | 2881 func_module libunistring-optional |
7791
dc1b4b5f8246
Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
7754
diff
changeset
|
2882 func_module unitypes |
4275
e272bc901785
New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents:
4273
diff
changeset
|
2883 func_module ucs4-utf8 |
e272bc901785
New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents:
4273
diff
changeset
|
2884 func_module ucs4-utf16 |
8062
e6aed2dfd436
Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents:
8048
diff
changeset
|
2885 func_module utf8-ucs4-unsafe |
e6aed2dfd436
Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents:
8048
diff
changeset
|
2886 func_module utf16-ucs4-unsafe |
4275
e272bc901785
New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents:
4273
diff
changeset
|
2887 func_module utf8-ucs4 |
e272bc901785
New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents:
4273
diff
changeset
|
2888 func_module utf16-ucs4 |
7848 | 2889 func_module unistr/base |
2890 func_module unistr/u8-to-u16 | |
2891 func_module unistr/u8-to-u32 | |
2892 func_module unistr/u16-to-u8 | |
2893 func_module unistr/u16-to-u32 | |
2894 func_module unistr/u32-to-u8 | |
2895 func_module unistr/u32-to-u16 | |
2896 func_module unistr/u8-check | |
2897 func_module unistr/u16-check | |
2898 func_module unistr/u32-check | |
2899 func_module unistr/u8-chr | |
2900 func_module unistr/u16-chr | |
2901 func_module unistr/u32-chr | |
2902 func_module unistr/u8-cmp | |
2903 func_module unistr/u16-cmp | |
2904 func_module unistr/u32-cmp | |
13528 | 2905 func_module unistr/u8-cmp2 |
2906 func_module unistr/u16-cmp2 | |
2907 func_module unistr/u32-cmp2 | |
7848 | 2908 func_module unistr/u8-cpy |
2909 func_module unistr/u16-cpy | |
2910 func_module unistr/u32-cpy | |
2911 func_module unistr/u8-cpy-alloc | |
2912 func_module unistr/u16-cpy-alloc | |
2913 func_module unistr/u32-cpy-alloc | |
2914 func_module unistr/u8-endswith | |
2915 func_module unistr/u16-endswith | |
2916 func_module unistr/u32-endswith | |
2917 func_module unistr/u8-mblen | |
2918 func_module unistr/u16-mblen | |
2919 func_module unistr/u32-mblen | |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2920 func_module unistr/u8-mbsnlen |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2921 func_module unistr/u16-mbsnlen |
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
2922 func_module unistr/u32-mbsnlen |
8062
e6aed2dfd436
Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents:
8048
diff
changeset
|
2923 func_module unistr/u8-mbtouc-unsafe |
e6aed2dfd436
Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents:
8048
diff
changeset
|
2924 func_module unistr/u16-mbtouc-unsafe |
e6aed2dfd436
Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents:
8048
diff
changeset
|
2925 func_module unistr/u32-mbtouc-unsafe |
7848 | 2926 func_module unistr/u8-mbtouc |
2927 func_module unistr/u16-mbtouc | |
2928 func_module unistr/u32-mbtouc | |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2929 func_module unistr/u8-mbtoucr |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2930 func_module unistr/u16-mbtoucr |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
2931 func_module unistr/u32-mbtoucr |
7848 | 2932 func_module unistr/u8-move |
2933 func_module unistr/u16-move | |
2934 func_module unistr/u32-move | |
2935 func_module unistr/u8-next | |
2936 func_module unistr/u16-next | |
2937 func_module unistr/u32-next | |
2938 func_module unistr/u8-prev | |
2939 func_module unistr/u16-prev | |
2940 func_module unistr/u32-prev | |
2941 func_module unistr/u8-set | |
2942 func_module unistr/u16-set | |
2943 func_module unistr/u32-set | |
2944 func_module unistr/u8-startswith | |
2945 func_module unistr/u16-startswith | |
2946 func_module unistr/u32-startswith | |
2947 func_module unistr/u8-stpcpy | |
2948 func_module unistr/u16-stpcpy | |
2949 func_module unistr/u32-stpcpy | |
2950 func_module unistr/u8-stpncpy | |
2951 func_module unistr/u16-stpncpy | |
2952 func_module unistr/u32-stpncpy | |
2953 func_module unistr/u8-strcat | |
2954 func_module unistr/u16-strcat | |
2955 func_module unistr/u32-strcat | |
2956 func_module unistr/u8-strchr | |
2957 func_module unistr/u16-strchr | |
2958 func_module unistr/u32-strchr | |
2959 func_module unistr/u8-strcmp | |
2960 func_module unistr/u16-strcmp | |
2961 func_module unistr/u32-strcmp | |
13528 | 2962 func_module unistr/u8-strcoll |
2963 func_module unistr/u16-strcoll | |
2964 func_module unistr/u32-strcoll | |
7848 | 2965 func_module unistr/u8-strcpy |
2966 func_module unistr/u16-strcpy | |
2967 func_module unistr/u32-strcpy | |
2968 func_module unistr/u8-strcspn | |
2969 func_module unistr/u16-strcspn | |
2970 func_module unistr/u32-strcspn | |
2971 func_module unistr/u8-strdup | |
2972 func_module unistr/u16-strdup | |
2973 func_module unistr/u32-strdup | |
2974 func_module unistr/u8-strlen | |
2975 func_module unistr/u16-strlen | |
2976 func_module unistr/u32-strlen | |
2977 func_module unistr/u8-strmblen | |
2978 func_module unistr/u16-strmblen | |
2979 func_module unistr/u32-strmblen | |
2980 func_module unistr/u8-strmbtouc | |
2981 func_module unistr/u16-strmbtouc | |
2982 func_module unistr/u32-strmbtouc | |
2983 func_module unistr/u8-strncat | |
2984 func_module unistr/u16-strncat | |
2985 func_module unistr/u32-strncat | |
2986 func_module unistr/u8-strncmp | |
2987 func_module unistr/u16-strncmp | |
2988 func_module unistr/u32-strncmp | |
2989 func_module unistr/u8-strncpy | |
2990 func_module unistr/u16-strncpy | |
2991 func_module unistr/u32-strncpy | |
2992 func_module unistr/u8-strnlen | |
2993 func_module unistr/u16-strnlen | |
2994 func_module unistr/u32-strnlen | |
2995 func_module unistr/u8-strpbrk | |
2996 func_module unistr/u16-strpbrk | |
2997 func_module unistr/u32-strpbrk | |
2998 func_module unistr/u8-strrchr | |
2999 func_module unistr/u16-strrchr | |
3000 func_module unistr/u32-strrchr | |
3001 func_module unistr/u8-strspn | |
3002 func_module unistr/u16-strspn | |
3003 func_module unistr/u32-strspn | |
3004 func_module unistr/u8-strstr | |
3005 func_module unistr/u16-strstr | |
3006 func_module unistr/u32-strstr | |
3007 func_module unistr/u8-strtok | |
3008 func_module unistr/u16-strtok | |
3009 func_module unistr/u32-strtok | |
3010 func_module unistr/u8-uctomb | |
3011 func_module unistr/u16-uctomb | |
3012 func_module unistr/u32-uctomb | |
7973 | 3013 func_module uniconv/base |
3014 func_module uniconv/u8-conv-from-enc | |
3015 func_module uniconv/u16-conv-from-enc | |
3016 func_module uniconv/u32-conv-from-enc | |
8960
bba4e6e2a854
New modules uniconv/u{8,16,32}-conv-to-enc.
Bruno Haible <bruno@clisp.org>
parents:
8950
diff
changeset
|
3017 func_module uniconv/u8-conv-to-enc |
bba4e6e2a854
New modules uniconv/u{8,16,32}-conv-to-enc.
Bruno Haible <bruno@clisp.org>
parents:
8950
diff
changeset
|
3018 func_module uniconv/u16-conv-to-enc |
bba4e6e2a854
New modules uniconv/u{8,16,32}-conv-to-enc.
Bruno Haible <bruno@clisp.org>
parents:
8950
diff
changeset
|
3019 func_module uniconv/u32-conv-to-enc |
7973 | 3020 func_module uniconv/u8-strconv-from-enc |
3021 func_module uniconv/u16-strconv-from-enc | |
3022 func_module uniconv/u32-strconv-from-enc | |
3023 func_module uniconv/u8-strconv-to-enc | |
3024 func_module uniconv/u16-strconv-to-enc | |
3025 func_module uniconv/u32-strconv-to-enc | |
3026 func_module uniconv/u8-strconv-from-locale | |
3027 func_module uniconv/u16-strconv-from-locale | |
3028 func_module uniconv/u32-strconv-from-locale | |
3029 func_module uniconv/u8-strconv-to-locale | |
3030 func_module uniconv/u16-strconv-to-locale | |
3031 func_module uniconv/u32-strconv-to-locale | |
9030
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3032 func_module unistdio/base |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3033 func_module unistdio/u-printf-args |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3034 func_module unistdio/ulc-asnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3035 func_module unistdio/ulc-asprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3036 func_module unistdio/ulc-fprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3037 func_module unistdio/ulc-printf-parse |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3038 func_module unistdio/ulc-snprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3039 func_module unistdio/ulc-sprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3040 func_module unistdio/ulc-vasnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3041 func_module unistdio/ulc-vasprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3042 func_module unistdio/ulc-vfprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3043 func_module unistdio/ulc-vsnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3044 func_module unistdio/ulc-vsprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3045 func_module unistdio/u8-asnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3046 func_module unistdio/u8-asprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3047 func_module unistdio/u8-printf-parse |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3048 func_module unistdio/u8-snprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3049 func_module unistdio/u8-sprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3050 func_module unistdio/u8-vasnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3051 func_module unistdio/u8-vasprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3052 func_module unistdio/u8-vsnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3053 func_module unistdio/u8-vsprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3054 func_module unistdio/u8-u8-asnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3055 func_module unistdio/u8-u8-asprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3056 func_module unistdio/u8-u8-snprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3057 func_module unistdio/u8-u8-sprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3058 func_module unistdio/u8-u8-vasnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3059 func_module unistdio/u8-u8-vasprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3060 func_module unistdio/u8-u8-vsnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3061 func_module unistdio/u8-u8-vsprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3062 func_module unistdio/u16-asnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3063 func_module unistdio/u16-asprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3064 func_module unistdio/u16-printf-parse |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3065 func_module unistdio/u16-snprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3066 func_module unistdio/u16-sprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3067 func_module unistdio/u16-vasnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3068 func_module unistdio/u16-vasprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3069 func_module unistdio/u16-vsnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3070 func_module unistdio/u16-vsprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3071 func_module unistdio/u16-u16-asnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3072 func_module unistdio/u16-u16-asprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3073 func_module unistdio/u16-u16-snprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3074 func_module unistdio/u16-u16-sprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3075 func_module unistdio/u16-u16-vasnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3076 func_module unistdio/u16-u16-vasprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3077 func_module unistdio/u16-u16-vsnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3078 func_module unistdio/u16-u16-vsprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3079 func_module unistdio/u32-asnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3080 func_module unistdio/u32-asprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3081 func_module unistdio/u32-printf-parse |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3082 func_module unistdio/u32-snprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3083 func_module unistdio/u32-sprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3084 func_module unistdio/u32-vasnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3085 func_module unistdio/u32-vasprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3086 func_module unistdio/u32-vsnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3087 func_module unistdio/u32-vsprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3088 func_module unistdio/u32-u32-asnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3089 func_module unistdio/u32-u32-asprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3090 func_module unistdio/u32-u32-snprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3091 func_module unistdio/u32-u32-sprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3092 func_module unistdio/u32-u32-vasnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3093 func_module unistdio/u32-u32-vasprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3094 func_module unistdio/u32-u32-vsnprintf |
870029929d86
Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents:
9013
diff
changeset
|
3095 func_module unistdio/u32-u32-vsprintf |
9053
1d22b1ee9970
New modules uniname/base and uniname/uniname.
Bruno Haible <bruno@clisp.org>
parents:
9042
diff
changeset
|
3096 func_module uniname/base |
1d22b1ee9970
New modules uniname/base and uniname/uniname.
Bruno Haible <bruno@clisp.org>
parents:
9042
diff
changeset
|
3097 func_module uniname/uniname |
10057 | 3098 func_module unictype/base |
3099 func_module unictype/bidicategory-byname | |
3100 func_module unictype/bidicategory-name | |
3101 func_module unictype/bidicategory-of | |
3102 func_module unictype/bidicategory-test | |
3103 func_module unictype/bidicategory-all | |
3104 func_module unictype/block-list | |
3105 func_module unictype/block-of | |
3106 func_module unictype/block-test | |
3107 func_module unictype/block-all | |
3108 func_module unictype/category-C | |
3109 func_module unictype/category-Cc | |
3110 func_module unictype/category-Cf | |
3111 func_module unictype/category-Cn | |
3112 func_module unictype/category-Co | |
3113 func_module unictype/category-Cs | |
3114 func_module unictype/category-L | |
3115 func_module unictype/category-Ll | |
3116 func_module unictype/category-Lm | |
3117 func_module unictype/category-Lo | |
3118 func_module unictype/category-Lt | |
3119 func_module unictype/category-Lu | |
3120 func_module unictype/category-M | |
3121 func_module unictype/category-Mc | |
3122 func_module unictype/category-Me | |
3123 func_module unictype/category-Mn | |
3124 func_module unictype/category-N | |
3125 func_module unictype/category-Nd | |
3126 func_module unictype/category-Nl | |
3127 func_module unictype/category-No | |
3128 func_module unictype/category-P | |
3129 func_module unictype/category-Pc | |
3130 func_module unictype/category-Pd | |
3131 func_module unictype/category-Pe | |
3132 func_module unictype/category-Pf | |
3133 func_module unictype/category-Pi | |
3134 func_module unictype/category-Po | |
3135 func_module unictype/category-Ps | |
3136 func_module unictype/category-S | |
3137 func_module unictype/category-Sc | |
3138 func_module unictype/category-Sk | |
3139 func_module unictype/category-Sm | |
3140 func_module unictype/category-So | |
3141 func_module unictype/category-Z | |
3142 func_module unictype/category-Zl | |
3143 func_module unictype/category-Zp | |
3144 func_module unictype/category-Zs | |
3145 func_module unictype/category-and | |
3146 func_module unictype/category-and-not | |
3147 func_module unictype/category-byname | |
3148 func_module unictype/category-name | |
3149 func_module unictype/category-none | |
3150 func_module unictype/category-of | |
3151 func_module unictype/category-or | |
3152 func_module unictype/category-test | |
3153 func_module unictype/category-test-withtable | |
3154 func_module unictype/category-all | |
3155 func_module unictype/combining-class | |
3156 func_module unictype/ctype-alnum | |
3157 func_module unictype/ctype-alpha | |
3158 func_module unictype/ctype-blank | |
3159 func_module unictype/ctype-cntrl | |
3160 func_module unictype/ctype-digit | |
3161 func_module unictype/ctype-graph | |
3162 func_module unictype/ctype-lower | |
3163 func_module unictype/ctype-print | |
3164 func_module unictype/ctype-punct | |
3165 func_module unictype/ctype-space | |
3166 func_module unictype/ctype-upper | |
3167 func_module unictype/ctype-xdigit | |
3168 func_module unictype/decimal-digit | |
3169 func_module unictype/digit | |
3170 func_module unictype/mirror | |
3171 func_module unictype/numeric | |
3172 func_module unictype/property-alphabetic | |
3173 func_module unictype/property-ascii-hex-digit | |
3174 func_module unictype/property-bidi-arabic-digit | |
3175 func_module unictype/property-bidi-arabic-right-to-left | |
3176 func_module unictype/property-bidi-block-separator | |
3177 func_module unictype/property-bidi-boundary-neutral | |
3178 func_module unictype/property-bidi-common-separator | |
3179 func_module unictype/property-bidi-control | |
3180 func_module unictype/property-bidi-embedding-or-override | |
3181 func_module unictype/property-bidi-eur-num-separator | |
3182 func_module unictype/property-bidi-eur-num-terminator | |
3183 func_module unictype/property-bidi-european-digit | |
3184 func_module unictype/property-bidi-hebrew-right-to-left | |
3185 func_module unictype/property-bidi-left-to-right | |
3186 func_module unictype/property-bidi-non-spacing-mark | |
3187 func_module unictype/property-bidi-other-neutral | |
3188 func_module unictype/property-bidi-pdf | |
3189 func_module unictype/property-bidi-segment-separator | |
3190 func_module unictype/property-bidi-whitespace | |
3191 func_module unictype/property-byname | |
14160
500ae32859c1
New Unicode character properties, from Unicode 5.2.0.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
3192 func_module unictype/property-case-ignorable |
500ae32859c1
New Unicode character properties, from Unicode 5.2.0.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
3193 func_module unictype/property-cased |
500ae32859c1
New Unicode character properties, from Unicode 5.2.0.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
3194 func_module unictype/property-changes-when-casefolded |
500ae32859c1
New Unicode character properties, from Unicode 5.2.0.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
3195 func_module unictype/property-changes-when-casemapped |
500ae32859c1
New Unicode character properties, from Unicode 5.2.0.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
3196 func_module unictype/property-changes-when-lowercased |
500ae32859c1
New Unicode character properties, from Unicode 5.2.0.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
3197 func_module unictype/property-changes-when-titlecased |
500ae32859c1
New Unicode character properties, from Unicode 5.2.0.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
3198 func_module unictype/property-changes-when-uppercased |
10057 | 3199 func_module unictype/property-combining |
3200 func_module unictype/property-composite | |
3201 func_module unictype/property-currency-symbol | |
3202 func_module unictype/property-dash | |
3203 func_module unictype/property-decimal-digit | |
3204 func_module unictype/property-default-ignorable-code-point | |
3205 func_module unictype/property-deprecated | |
3206 func_module unictype/property-diacritic | |
3207 func_module unictype/property-extender | |
3208 func_module unictype/property-format-control | |
3209 func_module unictype/property-grapheme-base | |
3210 func_module unictype/property-grapheme-extend | |
3211 func_module unictype/property-grapheme-link | |
3212 func_module unictype/property-hex-digit | |
3213 func_module unictype/property-hyphen | |
3214 func_module unictype/property-id-continue | |
3215 func_module unictype/property-id-start | |
3216 func_module unictype/property-ideographic | |
3217 func_module unictype/property-ids-binary-operator | |
3218 func_module unictype/property-ids-trinary-operator | |
3219 func_module unictype/property-ignorable-control | |
3220 func_module unictype/property-iso-control | |
3221 func_module unictype/property-join-control | |
3222 func_module unictype/property-left-of-pair | |
3223 func_module unictype/property-line-separator | |
3224 func_module unictype/property-logical-order-exception | |
3225 func_module unictype/property-lowercase | |
3226 func_module unictype/property-math | |
3227 func_module unictype/property-non-break | |
3228 func_module unictype/property-not-a-character | |
3229 func_module unictype/property-numeric | |
3230 func_module unictype/property-other-alphabetic | |
3231 func_module unictype/property-other-default-ignorable-code-point | |
3232 func_module unictype/property-other-grapheme-extend | |
3233 func_module unictype/property-other-id-continue | |
3234 func_module unictype/property-other-id-start | |
3235 func_module unictype/property-other-lowercase | |
3236 func_module unictype/property-other-math | |
3237 func_module unictype/property-other-uppercase | |
3238 func_module unictype/property-paired-punctuation | |
3239 func_module unictype/property-paragraph-separator | |
3240 func_module unictype/property-pattern-syntax | |
3241 func_module unictype/property-pattern-white-space | |
3242 func_module unictype/property-private-use | |
3243 func_module unictype/property-punctuation | |
3244 func_module unictype/property-quotation-mark | |
3245 func_module unictype/property-radical | |
3246 func_module unictype/property-sentence-terminal | |
3247 func_module unictype/property-soft-dotted | |
3248 func_module unictype/property-space | |
3249 func_module unictype/property-terminal-punctuation | |
3250 func_module unictype/property-test | |
3251 func_module unictype/property-titlecase | |
3252 func_module unictype/property-unassigned-code-value | |
3253 func_module unictype/property-unified-ideograph | |
3254 func_module unictype/property-uppercase | |
3255 func_module unictype/property-variation-selector | |
3256 func_module unictype/property-white-space | |
3257 func_module unictype/property-xid-continue | |
3258 func_module unictype/property-xid-start | |
3259 func_module unictype/property-zero-width | |
3260 func_module unictype/property-all | |
3261 func_module unictype/scripts | |
3262 func_module unictype/scripts-all | |
3263 func_module unictype/syntax-c-ident | |
3264 func_module unictype/syntax-c-whitespace | |
3265 func_module unictype/syntax-java-ident | |
3266 func_module unictype/syntax-java-whitespace | |
9070
1f5c82a3d787
Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents:
9053
diff
changeset
|
3267 func_module uniwidth/base |
1f5c82a3d787
Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents:
9053
diff
changeset
|
3268 func_module uniwidth/u8-strwidth |
1f5c82a3d787
Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents:
9053
diff
changeset
|
3269 func_module uniwidth/u8-width |
1f5c82a3d787
Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents:
9053
diff
changeset
|
3270 func_module uniwidth/u16-strwidth |
1f5c82a3d787
Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents:
9053
diff
changeset
|
3271 func_module uniwidth/u16-width |
1f5c82a3d787
Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents:
9053
diff
changeset
|
3272 func_module uniwidth/u32-strwidth |
1f5c82a3d787
Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents:
9053
diff
changeset
|
3273 func_module uniwidth/u32-width |
1f5c82a3d787
Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents:
9053
diff
changeset
|
3274 func_module uniwidth/width |
13528 | 3275 func_module uniwbrk/base |
3276 func_module uniwbrk/ulc-wordbreaks | |
3277 func_module uniwbrk/u8-wordbreaks | |
3278 func_module uniwbrk/u16-wordbreaks | |
3279 func_module uniwbrk/u32-wordbreaks | |
3280 func_module uniwbrk/wordbreak-property | |
10080
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3281 func_module unilbrk/base |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3282 func_module unilbrk/tables |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3283 func_module unilbrk/ulc-common |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3284 func_module unilbrk/u8-possible-linebreaks |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3285 func_module unilbrk/u16-possible-linebreaks |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3286 func_module unilbrk/u32-possible-linebreaks |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3287 func_module unilbrk/ulc-possible-linebreaks |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3288 func_module unilbrk/u8-width-linebreaks |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3289 func_module unilbrk/u16-width-linebreaks |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3290 func_module unilbrk/u32-width-linebreaks |
d0e8add2a62d
Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents:
10068
diff
changeset
|
3291 func_module unilbrk/ulc-width-linebreaks |
13528 | 3292 func_module uninorm/base |
3293 func_module uninorm/canonical-decomposition | |
3294 func_module uninorm/composition | |
3295 func_module uninorm/decomposing-form | |
3296 func_module uninorm/decomposition | |
3297 func_module uninorm/filter | |
3298 func_module uninorm/nfc | |
3299 func_module uninorm/nfd | |
3300 func_module uninorm/nfkc | |
3301 func_module uninorm/nfkd | |
3302 func_module uninorm/u8-normalize | |
3303 func_module uninorm/u16-normalize | |
3304 func_module uninorm/u32-normalize | |
3305 func_module uninorm/u8-normcmp | |
3306 func_module uninorm/u16-normcmp | |
3307 func_module uninorm/u32-normcmp | |
3308 func_module uninorm/u8-normcoll | |
3309 func_module uninorm/u16-normcoll | |
3310 func_module uninorm/u32-normcoll | |
3311 func_module uninorm/u8-normxfrm | |
3312 func_module uninorm/u16-normxfrm | |
3313 func_module uninorm/u32-normxfrm | |
3314 func_module unicase/base | |
3315 func_module unicase/empty-prefix-context | |
3316 func_module unicase/empty-suffix-context | |
3317 func_module unicase/locale-language | |
3318 func_module unicase/tolower | |
3319 func_module unicase/totitle | |
3320 func_module unicase/toupper | |
3321 func_module unicase/ulc-casecmp | |
3322 func_module unicase/ulc-casecoll | |
3323 func_module unicase/ulc-casexfrm | |
3324 func_module unicase/u8-casecmp | |
3325 func_module unicase/u16-casecmp | |
3326 func_module unicase/u32-casecmp | |
3327 func_module unicase/u8-casecoll | |
3328 func_module unicase/u16-casecoll | |
3329 func_module unicase/u32-casecoll | |
3330 func_module unicase/u8-casefold | |
3331 func_module unicase/u16-casefold | |
3332 func_module unicase/u32-casefold | |
3333 func_module unicase/u8-casexfrm | |
3334 func_module unicase/u16-casexfrm | |
3335 func_module unicase/u32-casexfrm | |
3336 func_module unicase/u8-ct-casefold | |
3337 func_module unicase/u16-ct-casefold | |
3338 func_module unicase/u32-ct-casefold | |
3339 func_module unicase/u8-ct-tolower | |
3340 func_module unicase/u16-ct-tolower | |
3341 func_module unicase/u32-ct-tolower | |
3342 func_module unicase/u8-ct-totitle | |
3343 func_module unicase/u16-ct-totitle | |
3344 func_module unicase/u32-ct-totitle | |
3345 func_module unicase/u8-ct-toupper | |
3346 func_module unicase/u16-ct-toupper | |
3347 func_module unicase/u32-ct-toupper | |
3348 func_module unicase/u8-is-cased | |
3349 func_module unicase/u16-is-cased | |
3350 func_module unicase/u32-is-cased | |
3351 func_module unicase/u8-is-casefolded | |
3352 func_module unicase/u16-is-casefolded | |
3353 func_module unicase/u32-is-casefolded | |
3354 func_module unicase/u8-is-lowercase | |
3355 func_module unicase/u16-is-lowercase | |
3356 func_module unicase/u32-is-lowercase | |
3357 func_module unicase/u8-is-titlecase | |
3358 func_module unicase/u16-is-titlecase | |
3359 func_module unicase/u32-is-titlecase | |
3360 func_module unicase/u8-is-uppercase | |
3361 func_module unicase/u16-is-uppercase | |
3362 func_module unicase/u8-prefix-context | |
3363 func_module unicase/u16-prefix-context | |
3364 func_module unicase/u32-prefix-context | |
3365 func_module unicase/u8-suffix-context | |
3366 func_module unicase/u16-suffix-context | |
3367 func_module unicase/u32-suffix-context | |
3368 func_module unicase/u8-tolower | |
3369 func_module unicase/u16-tolower | |
3370 func_module unicase/u32-tolower | |
3371 func_module unicase/u8-totitle | |
3372 func_module unicase/u16-totitle | |
3373 func_module unicase/u32-totitle | |
3374 func_module unicase/u8-toupper | |
3375 func_module unicase/u16-toupper | |
3376 func_module unicase/u32-toupper | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3377 func_end_table |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3378 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3379 element="Executing programs" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3380 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3381 func_section_wrap posix_ext_exec |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3382 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3383 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3384 |
4294 | 3385 func_begin_table |
5004
0d750c5a291b
(func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents:
4940
diff
changeset
|
3386 func_module cloexec |
4294 | 3387 func_module findprog |
13528 | 3388 func_module findprog-lgpl |
4802 | 3389 func_module wait-process |
4936 | 3390 func_module execute |
13924
5be0c314f2f8
Rename module 'pipe' to 'spawn-pipe'.
Bruno Haible <bruno@clisp.org>
parents:
13923
diff
changeset
|
3391 func_module spawn-pipe |
13528 | 3392 func_module pipe-filter-gi |
3393 func_module pipe-filter-ii | |
5598 | 3394 func_module sh-quote |
4294 | 3395 func_end_table |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3396 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3397 element="Java" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3398 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3399 func_section_wrap posix_ext_java |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3400 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3401 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3402 |
5608 | 3403 func_begin_table |
3404 func_module classpath | |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3405 func_module javacomp-script |
5628 | 3406 func_module javacomp |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3407 func_module javaexec-script |
5627 | 3408 func_module javaexec |
7018 | 3409 func_module javaversion |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3410 #func_module gcj |
5608 | 3411 func_end_table |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3412 |
5902 | 3413 element="C#" |
3414 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
3415 func_section_wrap posix_ext_csharp | |
3416 func_wrap H3 | |
3417 func_echo "$element" | |
3418 | |
3419 func_begin_table | |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3420 func_module csharpcomp-script |
5913 | 3421 func_module csharpcomp |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3422 func_module csharpexec-script |
5902 | 3423 func_module csharpexec |
3424 func_end_table | |
3425 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3426 element="Misc" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3427 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3428 func_section_wrap posix_ext_misc |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3429 func_wrap H3 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3430 func_echo "$element" |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3431 |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3432 func_begin_table |
4388
889d35a53bf1
New modules strchrnul, argp.
Bruno Haible <bruno@clisp.org>
parents:
4294
diff
changeset
|
3433 func_module argp |
13528 | 3434 func_module argp-version-etc |
5092
524f03b4532e
Add argz module, which is autoupdated from libtool.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5090
diff
changeset
|
3435 func_module argz |
10373
4c522dd8fa80
Add bitrotate module.
Simon Josefsson <simon@josefsson.org>
parents:
10370
diff
changeset
|
3436 func_module bitrotate |
5810 | 3437 func_module byteswap |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3438 func_module exitfail |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3439 func_module error |
4515
ae4b157d42ad
New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents:
4513
diff
changeset
|
3440 func_module extensions |
13005
9bc579132d24
forkpty, openpty: split functions into new modules
Eric Blake <eblake@redhat.com>
parents:
12909
diff
changeset
|
3441 func_module forkpty |
4733
dbe204edd79d
New modules 'getdomainname', 'xgetdomainname'.
Bruno Haible <bruno@clisp.org>
parents:
4715
diff
changeset
|
3442 func_module getdomainname |
dbe204edd79d
New modules 'getdomainname', 'xgetdomainname'.
Bruno Haible <bruno@clisp.org>
parents:
4715
diff
changeset
|
3443 func_module xgetdomainname |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3444 func_module getloadavg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3445 func_module getpagesize |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3446 func_module getusershell |
11442
925138552c76
Rename module 'visibility'.
Bruno Haible <bruno@clisp.org>
parents:
11441
diff
changeset
|
3447 func_module lib-symbol-visibility |
13528 | 3448 func_module login_tty |
11431
4a2a6b0eadea
New modules nproc, pthread.
Paul Eggert <eggert@cs.ucla.edu>
parents:
11173
diff
changeset
|
3449 func_module nproc |
13005
9bc579132d24
forkpty, openpty: split functions into new modules
Eric Blake <eblake@redhat.com>
parents:
12909
diff
changeset
|
3450 func_module openpty |
13528 | 3451 func_module parse-duration |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3452 func_module physmem |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3453 func_module posixver |
4603 | 3454 func_module progname |
16067 | 3455 func_module ptsname_r |
13005
9bc579132d24
forkpty, openpty: split functions into new modules
Eric Blake <eblake@redhat.com>
parents:
12909
diff
changeset
|
3456 func_module pty |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3457 func_module quotearg |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3458 func_module quote |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3459 func_module readutmp |
10704 | 3460 func_module random_r |
12143
d1f84df3a7a4
selinux-h: always use getfilecon wrappers
Jim Meyering <meyering@redhat.com>
parents:
12138
diff
changeset
|
3461 func_module selinux-h |
11787
c51247a03b74
selinux-at: new module
Jim Meyering <meyering@redhat.com>
parents:
11743
diff
changeset
|
3462 func_module selinux-at |
4392 | 3463 func_module sysexits |
11437
02599343364c
New module u64. Make crypto/sha512 use it.
Simon Josefsson <simon@josefsson.org>
parents:
11431
diff
changeset
|
3464 func_module u64 |
7093 | 3465 func_module verror |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3466 func_end_table |
6529
606d04c5f604
* MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6492
diff
changeset
|
3467 |
606d04c5f604
* MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6492
diff
changeset
|
3468 element="Support for building libraries and executables" |
606d04c5f604
* MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6492
diff
changeset
|
3469 func_section_wrap build_lib |
606d04c5f604
* MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6492
diff
changeset
|
3470 func_wrap H2 |
606d04c5f604
* MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6492
diff
changeset
|
3471 func_echo "$element" |
606d04c5f604
* MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6492
diff
changeset
|
3472 |
606d04c5f604
* MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6492
diff
changeset
|
3473 func_begin_table |
7754
ed8105720327
* modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents:
7738
diff
changeset
|
3474 func_module absolute-header |
15415
768296dab89a
Rename module 'arg-nonnull' to 'snippet/arg-nonnull'.
Bruno Haible <bruno@clisp.org>
parents:
15412
diff
changeset
|
3475 func_module snippet/arg-nonnull |
7199
85ef7b18536b
New config-h module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents:
7198
diff
changeset
|
3476 func_module config-h |
7198
5d9d77ec603f
New configmake module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents:
7196
diff
changeset
|
3477 func_module configmake |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3478 func_module dummy |
10057 | 3479 func_module gperf |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3480 func_module havelib |
8996
249583771c09
* MODULES.html.sh: Add include_next.
Paul Eggert <eggert@cs.ucla.edu>
parents:
8986
diff
changeset
|
3481 func_module include_next |
6555 | 3482 func_module ldd |
6529
606d04c5f604
* MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6492
diff
changeset
|
3483 func_module lib-ignore |
11441
e89e1991ce01
Add lib-msvc-compat module.
Simon Josefsson <simon@josefsson.org>
parents:
11440
diff
changeset
|
3484 func_module lib-msvc-compat |
11440
e6b25d0df170
Rename ld-version-script to lib-symbol-versions.
Simon Josefsson <simon@josefsson.org>
parents:
11437
diff
changeset
|
3485 func_module lib-symbol-versions |
15417
3c3c5ba60033
Rename module 'link-warning' to 'snippet/link-warning'.
Bruno Haible <bruno@clisp.org>
parents:
15415
diff
changeset
|
3486 func_module snippet/link-warning |
12723 | 3487 func_module manywarnings |
7736 | 3488 func_module no-c++ |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3489 func_module relocatable-lib |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3490 func_module relocatable-lib-lgpl |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3491 func_module relocatable-prog |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3492 func_module relocatable-prog-wrapper |
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3493 func_module relocatable-script |
15419
d2437ed29d20
Rename module 'warn-on-use' to 'snippet/warn-on-use'.
Bruno Haible <bruno@clisp.org>
parents:
15418
diff
changeset
|
3494 func_module snippet/warn-on-use |
10789
6a1640251330
Add warnings module.
Simon Josefsson <simon@josefsson.org>
parents:
10759
diff
changeset
|
3495 func_module warnings |
6529
606d04c5f604
* MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6492
diff
changeset
|
3496 func_end_table |
6952
b1f02ed7eeab
* modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents:
6912
diff
changeset
|
3497 |
b1f02ed7eeab
* modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents:
6912
diff
changeset
|
3498 element="Support for building documentation" |
7000
d6a8f3b8565f
* modules/stdlib-safer: New file.
Eric Blake <ebb9@byu.net>
parents:
6996
diff
changeset
|
3499 func_section_wrap build_doc |
6952
b1f02ed7eeab
* modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents:
6912
diff
changeset
|
3500 func_wrap H2 |
b1f02ed7eeab
* modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents:
6912
diff
changeset
|
3501 func_echo "$element" |
b1f02ed7eeab
* modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents:
6912
diff
changeset
|
3502 |
6996 | 3503 func_begin_table |
10600
e8dcbac0c60f
Add pmccabe2html to MODULES.html.sh.
Simon Josefsson <simon@josefsson.org>
parents:
10598
diff
changeset
|
3504 func_module agpl-3.0 |
6952
b1f02ed7eeab
* modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents:
6912
diff
changeset
|
3505 func_module fdl |
10759 | 3506 func_module fdl-1.3 |
6958 | 3507 func_module gendocs |
9042
ed4a80971dcd
also rename gpl/lgpl modules here
Karl Berry <karl@freefriends.org>
parents:
9030
diff
changeset
|
3508 func_module gpl-2.0 |
ed4a80971dcd
also rename gpl/lgpl modules here
Karl Berry <karl@freefriends.org>
parents:
9030
diff
changeset
|
3509 func_module gpl-3.0 |
ed4a80971dcd
also rename gpl/lgpl modules here
Karl Berry <karl@freefriends.org>
parents:
9030
diff
changeset
|
3510 func_module lgpl-2.1 |
16250
8ae5072d94d8
Add lgpl-3.0 module.
Simon Josefsson <simon@josefsson.org>
parents:
16239
diff
changeset
|
3511 func_module lgpl-3.0 |
10600
e8dcbac0c60f
Add pmccabe2html to MODULES.html.sh.
Simon Josefsson <simon@josefsson.org>
parents:
10598
diff
changeset
|
3512 func_module pmccabe2html |
7184
5b9dbce7a3b6
* modules/regexprops-generic: New file.
Eric Blake <ebb9@byu.net>
parents:
7178
diff
changeset
|
3513 func_module regexprops-generic |
6952
b1f02ed7eeab
* modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents:
6912
diff
changeset
|
3514 func_end_table |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3515 |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3516 element="Support for maintaining and releasing projects" |
7178
e8fe34306afa
Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents:
7162
diff
changeset
|
3517 func_section_wrap maintain |
e8fe34306afa
Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents:
7162
diff
changeset
|
3518 func_wrap H2 |
e8fe34306afa
Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents:
7162
diff
changeset
|
3519 func_echo "$element" |
e8fe34306afa
Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents:
7162
diff
changeset
|
3520 |
e8fe34306afa
Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents:
7162
diff
changeset
|
3521 func_begin_table |
8598
7e4515fca532
Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents:
8504
diff
changeset
|
3522 func_module announce-gen |
8670
2da41f6a3853
2007-04-12 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8657
diff
changeset
|
3523 func_module autobuild |
12250
4c93d98299f9
do-release-commit-and-tag: New module.
Jim Meyering <meyering@redhat.com>
parents:
12246
diff
changeset
|
3524 func_module do-release-commit-and-tag |
9319
d6c555bc447f
Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
3525 func_module git-version-gen |
9680
8df33869766a
New script and module: gitlog-to-changelog
Jim Meyering <meyering@redhat.com>
parents:
9661
diff
changeset
|
3526 func_module gitlog-to-changelog |
12087
aa533c56d59a
gnu-web-doc-update: New module.
Jim Meyering <meyering@redhat.com>
parents:
12068
diff
changeset
|
3527 func_module gnu-web-doc-update |
9811
5f79eb63c21e
Alter GNUmakefile to install into top directory.
Eric Blake <ebb9@byu.net>
parents:
9799
diff
changeset
|
3528 func_module gnumakefile |
7178
e8fe34306afa
Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents:
7162
diff
changeset
|
3529 func_module gnupload |
e8fe34306afa
Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents:
7162
diff
changeset
|
3530 func_module maintainer-makefile |
9799
55aec4615f6d
New script and module: mktempd
Jim Meyering <meyering@redhat.com>
parents:
9742
diff
changeset
|
3531 func_module mktempd |
17093
d31c977f5af4
non-recursive-gnulib-prefix-hack: new module
Jim Meyering <meyering@redhat.com>
parents:
17077
diff
changeset
|
3532 func_module non-recursive-gnulib-prefix-hack |
14679
2c310adf09e5
readme-release: new module with release instructions
Reuben Thomas <rrt@sc3d.org>
parents:
14629
diff
changeset
|
3533 func_module readme-release |
16181
50998a8507ac
test-framework-sh: new module
Jim Meyering <meyering@redhat.com>
parents:
16067
diff
changeset
|
3534 func_module test-framework-sh |
11743
38afe8f79841
update-copyright: new module
Jim Meyering <meyering@redhat.com>
parents:
11708
diff
changeset
|
3535 func_module update-copyright |
9684
cacb7a47b649
New script and module: useless-if-before-free
Jim Meyering <meyering@redhat.com>
parents:
9680
diff
changeset
|
3536 func_module useless-if-before-free |
9661
7af2e7ef9554
vc-list-files: new module
Jim Meyering <meyering@redhat.com>
parents:
9646
diff
changeset
|
3537 func_module vc-list-files |
7178
e8fe34306afa
Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents:
7162
diff
changeset
|
3538 func_end_table |
e8fe34306afa
Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents:
7162
diff
changeset
|
3539 |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3540 element="Misc" |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3541 func_section_wrap misc |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3542 func_wrap H2 |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3543 func_echo "$element" |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3544 |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3545 func_begin_table |
9477
96f72b145235
New module gnu-make, for determining whether we're using GNU Make.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9414
diff
changeset
|
3546 func_module gnu-make |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3547 func_module host-os |
10057 | 3548 func_module nocrash |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3549 func_module perl |
9478
c96110318f14
New module posix-shell, for determining a POSIX shell
Paul Eggert <eggert@cs.ucla.edu>
parents:
9477
diff
changeset
|
3550 func_module posix-shell |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3551 func_module uptime |
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7155
diff
changeset
|
3552 func_end_table |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3553 } |
7678
1757949a7c72
* MODULES.html.sh (File system functions): Add openat.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7656
diff
changeset
|
3554 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3555 |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3556 func_tmpdir |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3557 trap 'exit_status=$? |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3558 if test "$signal" != 0; then |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3559 echo "caught signal $signal" >&2 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3560 fi |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3561 rm -rf "$tmp" |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3562 exit $exit_status' 0 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3563 for signal in 1 2 3 13 15; do |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3564 trap '{ signal='$signal'; func_exit 1; }' $signal |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3565 done |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3566 signal=0 |
4113 | 3567 |
3568 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">' | |
3569 func_begin HTML | |
3570 | |
3571 func_begin HEAD | |
3572 | |
3573 element="Gnulib Module List" | |
3574 func_wrap TITLE | |
3575 func_echo "$element" | |
3576 | |
3577 modules=`gnulib-tool --list` | |
3578 modules=`for m in $modules; do printf "%s, " $m; done | sed -e 's/, $//'` | |
3579 func_echo '<META NAME="keywords" CONTENT="'"${modules}"'">' | |
3580 | |
3581 func_end HEAD | |
3582 | |
3583 func_begin BODY | |
3584 | |
3585 element="Gnulib Module List" | |
3586 func_wrap H1 | |
3587 func_echo "$element" | |
3588 | |
3589 func_echo 'This is a list of the modules which make up gnulib, with dependencies.' | |
3590 | |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3591 in_toc=yes |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3592 func_all_modules |
4113 | 3593 |
4191
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3594 in_toc= |
ff02fdcea265
Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents:
4163
diff
changeset
|
3595 func_all_modules |
4113 | 3596 |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3597 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3598 gnulib-tool --list > "$tmp/all-modules" |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3599 missed_modules=`for module in $seen_modules; do echo $module; done \ |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3600 | LC_ALL=C sort -u \ |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3601 | LC_ALL=C join -v 2 - "$tmp/all-modules"` |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3602 |
4113 | 3603 if test -n "$missed_modules"; then |
3604 | |
3605 element="Unclassified modules - please update MODULES.html.sh" | |
3606 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
3607 func_wrap H2 | |
3608 func_echo "$element" | |
3609 | |
3610 func_begin_table | |
3611 for module in $missed_modules; do | |
3612 func_module $module | |
3613 done | |
3614 func_end_table | |
3615 | |
3616 fi | |
3617 | |
17389
1d9362a18c34
Assume gnulib is checked out from Git, not CVS
Stefano Lattarini <stefano.lattarini@gmail.com>
parents:
17316
diff
changeset
|
3618 { find lib -type f -print; find m4 -type f -print; } | LC_ALL=C sort | sed -e '/\/\./d' -e /README/d -e /ChangeLog/d -e /Makefile/d -e /TODO/d -e '/tags$/d' -e '/TAGS$/d' -e '/~$/d' > "$tmp/all-files" |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3619 missed_files=`for file in $seen_files; do echo $file; done \ |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3620 | LC_ALL=C sort -u \ |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3621 | LC_ALL=C join -v 2 - "$tmp/all-files"` |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3622 |
4113 | 3623 if test -n "$missed_files"; then |
3624 | |
3625 element="Lone files - please create new modules containing them" | |
3626 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
3627 func_wrap H2 | |
3628 func_echo "$element" | |
3629 | |
3630 func_echo '<PRE>' | |
16017
69fec9ca5537
* MODULES.html.sh: Fix sed-script shell quoting and locale issues.
Paul Eggert <eggert@cs.ucla.edu>
parents:
15994
diff
changeset
|
3631 echo "$missed_files" | sed -e 's,^\(.*\)$,<A HREF="'"$repo_url_prefix"'\1'"$repo_url_suffix_repl"'">\1</A>,' |
4113 | 3632 echo '</PRE>' |
3633 | |
3634 fi | |
3635 | |
3636 element="Future developments" | |
3637 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"` | |
3638 func_wrap H2 | |
3639 func_echo "$element" | |
3640 | |
3641 func_echo 'Ideally a module could consist of:' | |
3642 func_begin UL | |
3643 func_echo '<LI>A header file: lib/<VAR>module</VAR>.h' | |
3644 func_echo '<LI>One or more implementation files: lib/<VAR>module</VAR>.c et al.' | |
3645 func_echo '<LI>One or more autoconf macro files: m4/<VAR>module</VAR>.m4 et al.' | |
3646 func_echo '<LI>A configure.ac fragment, Makefile.am fragment, dependency list: modules/<VAR>module</VAR>' | |
6113
dac0e048bd40
Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents:
6098
diff
changeset
|
3647 func_echo '<LI>A testsuite: source files in tests/ and metainformation (a configure.ac fragment, Makefile.am fragment, dependency list) in modules/<VAR>module</VAR>-tests' |
4113 | 3648 func_echo '<LI>Some documentation' |
3649 func_echo '<LI>A POT file and some PO files' | |
3650 func_end UL | |
3651 | |
3652 func_echo '<HR>' | |
3653 func_echo 'Generated from <CODE>MODULES.html.sh</CODE> on '`LC_ALL=C date +"%e %B %Y"`. | |
3654 | |
4457 | 3655 func_end BODY |
3656 | |
4113 | 3657 func_end HTML |
7656
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3658 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3659 rm -rf "$tmp" |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3660 # Undo the effect of the previous 'trap' command. |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3661 trap '' 0 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3662 trap 'func_exit $?' 1 2 3 13 15 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3663 |
50308a13df4d
* MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents:
7610
diff
changeset
|
3664 exit 0 |
7754
ed8105720327
* modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents:
7738
diff
changeset
|
3665 |
ed8105720327
* modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents:
7738
diff
changeset
|
3666 # Local Variables: |
ed8105720327
* modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents:
7738
diff
changeset
|
3667 # indent-tabs-mode: nil |
ed8105720327
* modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents:
7738
diff
changeset
|
3668 # whitespace-check-buffer-indent: nil |
ed8105720327
* modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents:
7738
diff
changeset
|
3669 # End: |