annotate MODULES.html.sh @ 10565:6dd4cb5e376f

fsync: new module * lib/fsync.c: New file. * m4/fsync.m4: New file. * modules/fsync: New file. * modules/fsync-tests: New file. * tests/test-fsync.c: New file. * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC. * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both GNULIB_FSYNC and HAVE_FSYNC. * lib/unistd.in.h (@GNULIB_FSYNC@): Add a block for fsync. * MODULES.html.sh (posix_functions): Add fsync. * doc/posix-functions/fsync.texi: Update.
author Richard W.M. Jones <rjones@redhat.com>
date Wed, 01 Oct 2008 13:54:44 +0100
parents 2819ac4d82da
children 39f73ea22045
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 #!/bin/sh
4137
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
2 #
9591
83fd101f67f0 Add memmem-simple module.
Eric Blake <ebb9@byu.net>
parents: 9550
diff changeset
3 # Copyright (C) 2002-2008 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
aba33e6c7301 Remove --cvs-urls option.
Bruno Haible <bruno@clisp.org>
parents: 10329
diff changeset
19 # Usage: MODULES.html.sh [--git-urls] > MODULES.html
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
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'
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
25 case $USER in
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
26 bruno )
5979
5cc92ab8ce76 Use shortcut links to the POSIX specification.
Bruno Haible <bruno@clisp.org>
parents: 5965
diff changeset
27 POSIX2001_URL='file:/packages/www/www.opengroup.org/susv3' ;;
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
28 esac
4148
ea41e6b422a8 include `dirname $0` in PATH, to find gnulib-tool.
Karl Berry <karl@freefriends.org>
parents: 4137
diff changeset
29
7849
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
30 repo_url_prefix=
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
31 repo_url_suffix=
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
32 if test $# != 0; then
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
33 case "$1" in
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
34 --git-urls)
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
35 # Generate URLs to the official gnulib git repository.
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
36 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
37 repo_url_suffix=''
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
38 ;;
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
39 esac
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
40 fi
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
41 # For sed replacements: Escape the '&'.
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
42 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
43
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
44 sed_lt='s,<,\&lt;,g'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
45 sed_gt='s,>,\&gt;,g'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
46 sed_escape_dot='s,\.,\\.,g'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
47 sed_escape_slash='s,/,\\/,g'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
48 trnl='\012'
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
49 sed_alt1='s,$,\\|,'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
50 sed_alt2='s,^\\|,\\(,'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
51 sed_alt3='s,\\|\\|$,\\),'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
52 posix_headers=`echo '
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
53 aio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
54 arpa/inet
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
55 assert
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
56 complex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
57 cpio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
58 ctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
59 dirent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
60 dlfcn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
61 errno
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
62 fcntl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
63 fenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
64 float
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
65 fmtmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
66 fnmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
67 ftw
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
68 glob
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
69 grp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
70 iconv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
71 inttypes
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
72 iso646
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
73 langinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
74 libgen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
75 limits
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
76 locale
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
77 math
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
78 monetary
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
79 mqueue
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
80 ndbm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
81 net/if
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
82 netdb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
83 netinet/in
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
84 netinet/tcp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
85 nl_types
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
86 poll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
87 pthread
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
88 pwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
89 regex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
90 sched
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
91 search
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
92 semaphore
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
93 setjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
94 signal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
95 spawn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
96 stdarg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
97 stdbool
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
98 stddef
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
99 stdint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
100 stdio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
101 stdlib
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
102 string
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
103 strings
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
104 stropts
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
105 sys/ipc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
106 sys/mman
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
107 sys/msg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
108 sys/resource
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
109 sys/select
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
110 sys/sem
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
111 sys/shm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
112 sys/socket
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
113 sys/stat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
114 sys/statvfs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
115 sys/time
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
116 sys/timeb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
117 sys/times
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
118 sys/types
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
119 sys/uio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
120 sys/un
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
121 sys/utsname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
122 sys/wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
123 syslog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
124 tar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
125 termios
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
126 tgmath
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
127 time
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
128 trace
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
129 ucontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
130 ulimit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
131 unistd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
132 utime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
133 utmpx
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
134 wchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
135 wctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
136 wordexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
137 ' | sed -e "$sed_alt1" | tr -d "$trnl" | sed -e "$sed_alt2" -e "$sed_alt3"`
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
138 posix_functions=`echo '
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
139 FD_CLR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
140 FD_ISSET
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
141 FD_SET
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
142 FD_ZERO
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 _exit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
145 _longjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
146 _setjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
147 _tolower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
148 _toupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
149 a64l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
150 abort
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
151 abs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
152 accept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
153 access
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
154 acos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
155 acosf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
156 acosh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
157 acoshf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
158 acoshl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
159 acosl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
160 aio_cancel
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
161 aio_error
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
162 aio_fsync
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
163 aio_read
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
164 aio_return
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
165 aio_suspend
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
166 aio_write
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
167 alarm
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 bcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
193 bcopy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
194 bind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
195 bsd_signal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
196 bsearch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
197 btowc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
198 bzero
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
199 cabs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
200 cabsf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
201 cabsl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
202 cacos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
203 cacosf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
204 cacosh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
205 cacoshf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
206 cacoshl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
207 cacosl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
208 calloc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
209 carg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
210 cargf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
211 cargl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
212 casin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
213 casinf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
214 casinh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
215 casinhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
216 casinhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
217 casinl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
218 catan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
219 catanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
220 catanh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
221 catanhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
222 catanhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
223 catanl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
224 catclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
225 catgets
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
226 catopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
227 cbrt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
228 cbrtf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
229 cbrtl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
230 ccos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
231 ccosf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
232 ccosh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
233 ccoshf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
234 ccoshl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
235 ccosl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
236 ceil
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
237 ceilf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
238 ceill
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
239 cexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
240 cexpf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
241 cexpl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
242 cfgetispeed
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
243 cfgetospeed
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
244 cfsetispeed
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
245 cfsetospeed
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
246 chdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
247 chmod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
248 chown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
249 cimag
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
250 cimagf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
251 cimagl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
252 clearerr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
253 clock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
254 clock_getcpuclockid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
255 clock_getres
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
256 clock_gettime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
257 clock_nanosleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
258 clock_settime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
259 clog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
260 clogf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
261 clogl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
262 close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
263 closedir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
264 closelog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
265 confstr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
266 conj
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
267 conjf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
268 conjl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
269 connect
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
270 copysign
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
271 copysignf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
272 copysignl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
273 cos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
274 cosf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
275 cosh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
276 coshf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
277 coshl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
278 cosl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
279 cpow
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
280 cpowf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
281 cpowl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
282 cproj
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
283 cprojf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
284 cprojl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
285 creal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
286 crealf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
287 creall
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
288 creat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
289 crypt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
290 csin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
291 csinf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
292 csinh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
293 csinhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
294 csinhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
295 csinl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
296 csqrt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
297 csqrtf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
298 csqrtl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
299 ctan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
300 ctanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
301 ctanh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
302 ctanhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
303 ctanhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
304 ctanl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
305 ctermid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
306 ctime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
307 ctime_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
308 daylight
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
309 dbm_clearerr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
310 dbm_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
311 dbm_delete
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
312 dbm_error
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
313 dbm_fetch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
314 dbm_firstkey
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
315 dbm_nextkey
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
316 dbm_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
317 dbm_store
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
318 difftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
319 dirname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
320 div
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
321 dlclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
322 dlerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
323 dlopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
324 dlsym
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
325 drand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
326 dup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
327 dup2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
328 ecvt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
329 encrypt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
330 endgrent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
331 endhostent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
332 endnetent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
333 endprotoent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
334 endpwent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
335 endservent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
336 endutxent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
337 environ
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
338 erand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
339 erf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
340 erfc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
341 erfcf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
342 erfcl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
343 erff
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
344 erfl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
345 errno
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
346 execl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
347 execle
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
348 execlp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
349 execv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
350 execve
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
351 execvp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
352 exit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
353 exp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
354 exp2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
355 exp2f
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
356 exp2l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
357 expf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
358 expl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
359 expm1
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
360 expm1f
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
361 expm1l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
362 fabs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
363 fabsf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
364 fabsl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
365 fattach
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
366 fchdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
367 fchmod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
368 fchown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
369 fclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
370 fcntl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
371 fcvt
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
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
378 feclearexcept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
379 fegetenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
380 fegetexceptflag
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
381 fegetround
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
382 feholdexcept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
383 feof
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
384 feraiseexcept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
385 ferror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
386 fesetenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
387 fesetexceptflag
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
388 fesetround
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
389 fetestexcept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
390 feupdateenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
391 fflush
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
392 ffs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
393 fgetc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
394 fgetpos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
395 fgets
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
396 fgetwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
397 fgetws
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
398 fileno
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
399 flockfile
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
400 floor
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
401 floorf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
402 floorl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
403 fma
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
404 fmaf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
405 fmal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
406 fmax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
407 fmaxf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
408 fmaxl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
409 fmin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
410 fminf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
411 fminl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
412 fmod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
413 fmodf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
414 fmodl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
415 fmtmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
416 fnmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
417 fopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
418 fork
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
419 fpathconf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
420 fpclassify
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
421 fprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
422 fputc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
423 fputs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
424 fputwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
425 fputws
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
426 fread
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
427 free
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
428 freeaddrinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
429 freopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
430 frexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
431 frexpf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
432 frexpl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
433 fscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
434 fseek
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
435 fseeko
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
436 fsetpos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
437 fstat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
438 fstatvfs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
439 fsync
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
440 ftell
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
441 ftello
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
442 ftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
443 ftok
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
444 ftruncate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
445 ftrylockfile
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
446 ftw
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
447 funlockfile
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
448 fwide
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
449 fwprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
450 fwrite
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
451 fwscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
452 gai_strerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
453 gcvt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
454 getaddrinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
455 getc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
456 getc_unlocked
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
457 getchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
458 getchar_unlocked
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
459 getcontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
460 getcwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
461 getdate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
462 getegid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
463 getenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
464 geteuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
465 getgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
466 getgrent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
467 getgrgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
468 getgrgid_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
469 getgrnam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
470 getgrnam_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
471 getgroups
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
472 gethostbyaddr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
473 gethostbyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
474 gethostent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
475 gethostid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
476 gethostname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
477 getitimer
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
478 getlogin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
479 getlogin_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
480 getmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
481 getnameinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
482 getnetbyaddr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
483 getnetbyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
484 getnetent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
485 getopt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
486 getpeername
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
487 getpgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
488 getpgrp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
489 getpid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
490 getpmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
491 getppid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
492 getpriority
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
493 getprotobyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
494 getprotobynumber
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
495 getprotoent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
496 getpwent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
497 getpwnam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
498 getpwnam_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
499 getpwuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
500 getpwuid_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
501 getrlimit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
502 getrusage
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
503 gets
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
504 getservbyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
505 getservbyport
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
506 getservent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
507 getsid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
508 getsockname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
509 getsockopt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
510 getsubopt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
511 gettimeofday
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
512 getuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
513 getutxent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
514 getutxid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
515 getutxline
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
516 getwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
517 getwchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
518 getwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
519 glob
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
520 globfree
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
521 gmtime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
522 gmtime_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
523 grantpt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
524 h_errno
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
525 hcreate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
526 hdestroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
527 hsearch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
528 htonl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
529 htons
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
530 hypot
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
531 hypotf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
532 hypotl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
533 iconv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
534 iconv_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
535 iconv_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
536 if_freenameindex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
537 if_indextoname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
538 if_nameindex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
539 if_nametoindex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
540 ilogb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
541 ilogbf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
542 ilogbl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
543 imaxabs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
544 imaxdiv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
545 index
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
546 inet_addr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
547 inet_ntoa
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
548 inet_ntop
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
549 inet_pton
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
550 initstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
551 insque
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
552 ioctl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
553 isalnum
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
554 isalpha
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
555 isascii
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
556 isastream
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
557 isatty
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
558 isblank
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
559 iscntrl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
560 isdigit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
561 isfinite
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
562 isgraph
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
563 isgreater
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
564 isgreaterequal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
565 isinf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
566 isless
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
567 islessequal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
568 islessgreater
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
569 islower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
570 isnan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
571 isnormal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
572 isprint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
573 ispunct
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
574 isspace
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
575 isunordered
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
576 isupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
577 iswalnum
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
578 iswalpha
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
579 iswblank
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
580 iswcntrl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
581 iswctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
582 iswdigit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
583 iswgraph
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
584 iswlower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
585 iswprint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
586 iswpunct
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
587 iswspace
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
588 iswupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
589 iswxdigit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
590 isxdigit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
591 j0
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
592 j1
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
593 jn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
594 jrand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
595 kill
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
596 killpg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
597 l64a
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
598 labs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
599 lchown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
600 lcong48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
601 ldexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
602 ldexpf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
603 ldexpl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
604 ldiv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
605 lfind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
606 lgamma
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
607 lgammaf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
608 lgammal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
609 link
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
610 lio_listio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
611 listen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
612 llabs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
613 lldiv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
614 llrint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
615 llrintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
616 llrintl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
617 llround
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
618 llroundf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
619 llroundl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
620 localeconv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
621 localtime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
622 localtime_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
623 lockf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
624 log
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
625 log10
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
626 log10f
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
627 log10l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
628 log1p
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
629 log1pf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
630 log1pl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
631 log2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
632 log2f
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
633 log2l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
634 logb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
635 logbf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
636 logbl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
637 logf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
638 logl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
639 longjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
640 lrand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
641 lrint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
642 lrintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
643 lrintl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
644 lround
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
645 lroundf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
646 lroundl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
647 lsearch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
648 lseek
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
649 lstat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
650 makecontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
651 malloc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
652 mblen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
653 mbrlen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
654 mbrtowc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
655 mbsinit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
656 mbsrtowcs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
657 mbstowcs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
658 mbtowc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
659 memccpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
660 memchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
661 memcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
662 memcpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
663 memmove
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
664 memset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
665 mkdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
666 mkfifo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
667 mknod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
668 mkstemp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
669 mktemp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
670 mktime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
671 mlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
672 mlockall
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
673 mmap
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
674 modf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
675 modff
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
676 modfl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
677 mprotect
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
678 mq_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
679 mq_getattr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
680 mq_notify
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
681 mq_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
682 mq_receive
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
683 mq_send
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
684 mq_setattr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
685 mq_timedreceive
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
686 mq_timedsend
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
687 mq_unlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
688 mrand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
689 msgctl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
690 msgget
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
691 msgrcv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
692 msgsnd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
693 msync
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
694 munlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
695 munlockall
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
696 munmap
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
697 nan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
698 nanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
699 nanl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
700 nanosleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
701 nearbyint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
702 nearbyintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
703 nearbyintl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
704 nextafter
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
705 nextafterf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
706 nextafterl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
707 nexttoward
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
708 nexttowardf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
709 nexttowardl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
710 nftw
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
711 nice
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
712 nl_langinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
713 nrand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
714 ntohl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
715 ntohs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
716 open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
717 opendir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
718 openlog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
719 optarg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
720 pathconf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
721 pause
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
722 pclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
723 perror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
724 pipe
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
725 poll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
726 popen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
727 posix_fadvise
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
728 posix_fallocate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
729 posix_madvise
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
730 posix_mem_offset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
731 posix_memalign
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
732 posix_openpt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
733 posix_spawn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
734 posix_spawn_file_actions_addclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
735 posix_spawn_file_actions_adddup2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
736 posix_spawn_file_actions_addopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
737 posix_spawn_file_actions_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
738 posix_spawn_file_actions_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
739 posix_spawnattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
740 posix_spawnattr_getflags
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
741 posix_spawnattr_getpgroup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
742 posix_spawnattr_getschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
743 posix_spawnattr_getschedpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
744 posix_spawnattr_getsigdefault
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
745 posix_spawnattr_getsigmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
746 posix_spawnattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
747 posix_spawnattr_setflags
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
748 posix_spawnattr_setpgroup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
749 posix_spawnattr_setschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
750 posix_spawnattr_setschedpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
751 posix_spawnattr_setsigdefault
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
752 posix_spawnattr_setsigmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
753 posix_spawnp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
754 posix_trace_attr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
755 posix_trace_attr_getclockres
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
756 posix_trace_attr_getcreatetime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
757 posix_trace_attr_getgenversion
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
758 posix_trace_attr_getinherited
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
759 posix_trace_attr_getlogfullpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
760 posix_trace_attr_getlogsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
761 posix_trace_attr_getmaxdatasize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
762 posix_trace_attr_getmaxsystemeventsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
763 posix_trace_attr_getmaxusereventsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
764 posix_trace_attr_getname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
765 posix_trace_attr_getstreamfullpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
766 posix_trace_attr_getstreamsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
767 posix_trace_attr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
768 posix_trace_attr_setinherited
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
769 posix_trace_attr_setlogfullpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
770 posix_trace_attr_setlogsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
771 posix_trace_attr_setmaxdatasize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
772 posix_trace_attr_setname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
773 posix_trace_attr_setstreamfullpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
774 posix_trace_attr_setstreamsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
775 posix_trace_clear
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
776 posix_trace_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
777 posix_trace_create
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
778 posix_trace_create_withlog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
779 posix_trace_event
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
780 posix_trace_eventid_equal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
781 posix_trace_eventid_get_name
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
782 posix_trace_eventid_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
783 posix_trace_eventset_add
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
784 posix_trace_eventset_del
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
785 posix_trace_eventset_empty
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
786 posix_trace_eventset_fill
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
787 posix_trace_eventset_ismember
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
788 posix_trace_eventtypelist_getnext_id
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
789 posix_trace_eventtypelist_rewind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
790 posix_trace_flush
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
791 posix_trace_get_attr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
792 posix_trace_get_filter
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
793 posix_trace_get_status
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
794 posix_trace_getnext_event
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
795 posix_trace_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
796 posix_trace_rewind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
797 posix_trace_set_filter
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
798 posix_trace_shutdown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
799 posix_trace_start
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
800 posix_trace_stop
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
801 posix_trace_timedgetnext_event
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
802 posix_trace_trid_eventid_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
803 posix_trace_trygetnext_event
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
804 posix_typed_mem_get_info
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
805 posix_typed_mem_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
806 pow
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
807 powf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
808 powl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
809 pread
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
810 printf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
811 pselect
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
812 pthread_atfork
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
813 pthread_attr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
814 pthread_attr_getdetachstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
815 pthread_attr_getguardsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
816 pthread_attr_getinheritsched
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
817 pthread_attr_getschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
818 pthread_attr_getschedpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
819 pthread_attr_getscope
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
820 pthread_attr_getstack
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
821 pthread_attr_getstackaddr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
822 pthread_attr_getstacksize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
823 pthread_attr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
824 pthread_attr_setdetachstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
825 pthread_attr_setguardsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
826 pthread_attr_setinheritsched
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
827 pthread_attr_setschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
828 pthread_attr_setschedpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
829 pthread_attr_setscope
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
830 pthread_attr_setstack
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
831 pthread_attr_setstackaddr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
832 pthread_attr_setstacksize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
833 pthread_barrier_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
834 pthread_barrier_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
835 pthread_barrier_wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
836 pthread_barrierattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
837 pthread_barrierattr_getpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
838 pthread_barrierattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
839 pthread_barrierattr_setpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
840 pthread_cancel
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
841 pthread_cleanup_pop
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
842 pthread_cleanup_push
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
843 pthread_cond_broadcast
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
844 pthread_cond_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
845 pthread_cond_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
846 pthread_cond_signal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
847 pthread_cond_timedwait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
848 pthread_cond_wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
849 pthread_condattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
850 pthread_condattr_getclock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
851 pthread_condattr_getpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
852 pthread_condattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
853 pthread_condattr_setclock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
854 pthread_condattr_setpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
855 pthread_create
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
856 pthread_detach
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
857 pthread_equal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
858 pthread_exit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
859 pthread_getconcurrency
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
860 pthread_getcpuclockid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
861 pthread_getschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
862 pthread_getspecific
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
863 pthread_join
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
864 pthread_key_create
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
865 pthread_key_delete
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
866 pthread_kill
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
867 pthread_mutex_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
868 pthread_mutex_getprioceiling
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
869 pthread_mutex_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
870 pthread_mutex_lock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
871 pthread_mutex_setprioceiling
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
872 pthread_mutex_timedlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
873 pthread_mutex_trylock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
874 pthread_mutex_unlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
875 pthread_mutexattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
876 pthread_mutexattr_getprioceiling
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
877 pthread_mutexattr_getprotocol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
878 pthread_mutexattr_getpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
879 pthread_mutexattr_gettype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
880 pthread_mutexattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
881 pthread_mutexattr_setprioceiling
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
882 pthread_mutexattr_setprotocol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
883 pthread_mutexattr_setpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
884 pthread_mutexattr_settype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
885 pthread_once
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
886 pthread_rwlock_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
887 pthread_rwlock_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
888 pthread_rwlock_rdlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
889 pthread_rwlock_timedrdlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
890 pthread_rwlock_timedwrlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
891 pthread_rwlock_tryrdlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
892 pthread_rwlock_trywrlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
893 pthread_rwlock_unlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
894 pthread_rwlock_wrlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
895 pthread_rwlockattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
896 pthread_rwlockattr_getpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
897 pthread_rwlockattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
898 pthread_rwlockattr_setpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
899 pthread_self
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
900 pthread_setcancelstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
901 pthread_setcanceltype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
902 pthread_setconcurrency
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
903 pthread_setschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
904 pthread_setschedprio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
905 pthread_setspecific
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
906 pthread_sigmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
907 pthread_spin_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
908 pthread_spin_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
909 pthread_spin_lock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
910 pthread_spin_trylock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
911 pthread_spin_unlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
912 pthread_testcancel
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
913 ptsname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
914 putc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
915 putc_unlocked
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
916 putchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
917 putchar_unlocked
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
918 putenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
919 putmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
920 putpmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
921 puts
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
922 pututxline
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
923 putwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
924 putwchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
925 pwrite
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
926 qsort
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
927 raise
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
928 rand
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
929 rand_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
930 random
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
931 read
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
932 readdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
933 readdir_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
934 readlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
935 readv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
936 realloc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
937 realpath
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
938 recv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
939 recvfrom
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
940 recvmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
941 regcomp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
942 regerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
943 regexec
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
944 regfree
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
945 remainder
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
946 remainderf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
947 remainderl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
948 remove
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
949 remque
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
950 remquo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
951 remquof
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
952 remquol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
953 rename
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
954 rewind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
955 rewinddir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
956 rindex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
957 rint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
958 rintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
959 rintl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
960 rmdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
961 round
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
962 roundf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
963 roundl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
964 scalb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
965 scalbln
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
966 scalblnf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
967 scalblnl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
968 scalbn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
969 scalbnf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
970 scalbnl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
971 scanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
972 sched_get_priority_max
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
973 sched_getparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
974 sched_getscheduler
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
975 sched_rr_get_interval
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
976 sched_setparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
977 sched_setscheduler
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
978 sched_yield
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
979 seed48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
980 seekdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
981 select
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
982 sem_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
983 sem_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
984 sem_getvalue
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
985 sem_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
986 sem_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
987 sem_post
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
988 sem_timedwait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
989 sem_trywait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
990 sem_unlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
991 sem_wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
992 semctl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
993 semget
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
994 semop
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
995 send
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
996 sendmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
997 sendto
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
998 setbuf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
999 setcontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1000 setegid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1001 setenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1002 seteuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1003 setgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1004 setgrent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1005 sethostent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1006 setitimer
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1007 setjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1008 setkey
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1009 setlocale
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1010 setlogmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1011 setnetent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1012 setpgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1013 setpgrp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1014 setpriority
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1015 setprotoent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1016 setpwent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1017 setregid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1018 setreuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1019 setrlimit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1020 setservent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1021 setsid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1022 setsockopt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1023 setstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1024 setuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1025 setutxent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1026 setvbuf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1027 shm_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1028 shm_unlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1029 shmat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1030 shmctl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1031 shmdt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1032 shmget
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1033 shutdown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1034 sigaction
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1035 sigaddset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1036 sigaltstack
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1037 sigdelset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1038 sigemptyset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1039 sigfillset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1040 sighold
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1041 sigignore
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1042 siginterrupt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1043 sigismember
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1044 siglongjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1045 signal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1046 signbit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1047 sigpause
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1048 sigpending
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1049 sigprocmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1050 sigqueue
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1051 sigrelse
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1052 sigset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1053 sigsetjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1054 sigsuspend
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1055 sigtimedwait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1056 sigwait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1057 sigwaitinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1058 sin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1059 sinf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1060 sinh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1061 sinhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1062 sinhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1063 sinl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1064 sleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1065 snprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1066 sockatmark
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1067 socket
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1068 socketpair
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1069 sprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1070 sqrt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1071 sqrtf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1072 sqrtl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1073 srand
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1074 srand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1075 srandom
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1076 sscanf
5979
5cc92ab8ce76 Use shortcut links to the POSIX specification.
Bruno Haible <bruno@clisp.org>
parents: 5965
diff changeset
1077 stat
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1078 statvfs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1079 stdin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1080 strcasecmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1081 strcat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1082 strchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1083 strcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1084 strcoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1085 strcpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1086 strcspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1087 strdup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1088 strerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1089 strerror_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1090 strfmon
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1091 strftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1092 strlen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1093 strncasecmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1094 strncat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1095 strncmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1096 strncpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1097 strpbrk
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1098 strptime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1099 strrchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1100 strspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1101 strstr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1102 strtod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1103 strtof
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1104 strtoimax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1105 strtok
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1106 strtok_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1107 strtol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1108 strtold
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1109 strtoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1110 strtoul
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1111 strtoull
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1112 strtoumax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1113 strxfrm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1114 swab
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1115 swapcontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1116 swprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1117 swscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1118 symlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1119 sync
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1120 sysconf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1121 syslog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1122 system
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1123 tan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1124 tanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1125 tanh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1126 tanhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1127 tanhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1128 tanl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1129 tcdrain
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1130 tcflow
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1131 tcflush
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1132 tcgetattr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1133 tcgetpgrp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1134 tcgetsid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1135 tcsendbreak
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1136 tcsetattr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1137 tcsetpgrp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1138 tdelete
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1139 telldir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1140 tempnam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1141 tfind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1142 tgamma
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1143 tgammaf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1144 tgammal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1145 time
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1146 timer_create
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1147 timer_delete
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1148 timer_getoverrun
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1149 timer_settime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1150 times
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1151 timezone
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1152 tmpfile
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1153 tmpnam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1154 toascii
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1155 tolower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1156 toupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1157 towctrans
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1158 towlower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1159 towupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1160 trunc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1161 truncate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1162 truncf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1163 truncl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1164 tsearch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1165 ttyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1166 ttyname_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1167 twalk
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1168 tzname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1169 tzset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1170 ualarm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1171 ulimit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1172 umask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1173 uname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1174 ungetc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1175 ungetwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1176 unlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1177 unlockpt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1178 unsetenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1179 usleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1180 utime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1181 utimes
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1182 va_arg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1183 va_copy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1184 va_end
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1185 va_start
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1186 vfork
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1187 vfprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1188 vfscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1189 vfwprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1190 vfwscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1191 vprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1192 vscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1193 vsnprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1194 vsprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1195 vsscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1196 vswprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1197 vswscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1198 vwprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1199 vwscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1200 wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1201 waitid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1202 waitpid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1203 wcrtomb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1204 wcscat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1205 wcschr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1206 wcscmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1207 wcscoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1208 wcscpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1209 wcscspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1210 wcsftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1211 wcslen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1212 wcsncat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1213 wcsncmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1214 wcsncpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1215 wcspbrk
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1216 wcsrchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1217 wcsrtombs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1218 wcsspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1219 wcsstr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1220 wcstod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1221 wcstof
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1222 wcstoimax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1223 wcstok
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1224 wcstol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1225 wcstold
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1226 wcstoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1227 wcstombs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1228 wcstoul
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1229 wcstoull
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1230 wcstoumax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1231 wcswcs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1232 wcswidth
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1233 wcsxfrm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1234 wctob
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1235 wctomb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1236 wctrans
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1237 wctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1238 wcwidth
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1239 wmemchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1240 wmemcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1241 wmemcpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1242 wmemmove
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1243 wmemset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1244 wordexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1245 wordfree
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1246 wprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1247 write
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1248 writev
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1249 wscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1250 y0
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1251 y1
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1252 yn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1253 ' | sed -e "$sed_alt1" | tr -d "$trnl" | sed -e "$sed_alt2" -e "$sed_alt3"`
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1254
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1255 indent=""
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1256 seen_modules=
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1257 seen_files=
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1258
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1259 # func_exit STATUS
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1260 # exit with status
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1261 func_exit ()
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1262 {
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1263 (exit $1); exit $1
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1264 }
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1265
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1266 # func_tmpdir
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1267 # creates a temporary directory.
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1268 # Sets variable
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1269 # - 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
1270 func_tmpdir ()
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1271 {
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1272 # 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
1273 # 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
1274 # /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
1275 : ${TMPDIR=/tmp}
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1276 {
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1277 # 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
1278 # message.
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1279 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
1280 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
1281 } ||
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1282 {
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1283 # 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
1284 # 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
1285 # 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
1286 # 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
1287 # directory.
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1288 tmp=$TMPDIR/MD$$-$RANDOM
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1289 (umask 077 && mkdir "$tmp")
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1290 } ||
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1291 {
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1292 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
1293 func_exit 1
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1294 }
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1295 }
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1296
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1297 # func_append var value
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1298 # 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
1299 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
1300 # 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
1301 # 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
1302 func_append ()
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1303 {
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1304 eval "$1+=\"\$2\""
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1305 }
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1306 else
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1307 func_append ()
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1308 {
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1309 eval "$1=\"\$$1\$2\""
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1310 }
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1311 fi
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1312
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1313 # func_echo line
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1314 # outputs line with indentation.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1315 func_echo ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1316 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1317 echo "${indent}$*"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1318 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1319
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1320 # func_indent
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1321 # increases the indentation.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1322 func_indent ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1323 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1324 indent="$indent "
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1325 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1326
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1327 # func_unindent
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1328 # decreases the indentation.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1329 func_unindent ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1330 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1331 indent=`echo "$indent" | sed -e 's/ $//'`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1332 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1333
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1334 # func_begin tag [attribute...]
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1335 # opens a HTML tag.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1336 func_begin ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1337 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1338 func_echo "<$*>"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1339 func_indent
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1340 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1341
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1342 # func_end tag
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1343 # closes a HTML tag.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1344 func_end ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1345 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1346 func_unindent
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1347 func_echo "</$1>"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1348 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1349
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1350 # func_wrap tag [attribute...]
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1351 # encloses $element in a HTML tag, without line breaks.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1352 func_wrap ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1353 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1354 element="<$*>${element}</$1>"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1355 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1356
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1357 # func_section_wrap sectiontag
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1358 # 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
1359 func_section_wrap ()
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1360 {
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1361 if test -n "$in_toc"; then
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1362 func_wrap A "HREF=\"#$1\""
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1363 else
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1364 func_wrap A "NAME=\"$1\""
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1365 fi
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1366 }
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1367
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1368 # func_begin_table
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1369 func_begin_table ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1370 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1371 func_begin TABLE
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1372 if test -z "$in_toc"; then
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1373 func_begin TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1374 func_echo "<TH ALIGN=LEFT>modules/"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1375 func_echo "<TH ALIGN=LEFT>lib/"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1376 func_echo "<TH ALIGN=LEFT>lib/"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1377 func_echo "<TH ALIGN=LEFT>m4/"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1378 func_echo "<TH ALIGN=LEFT>&nbsp;"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1379 func_end TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1380 func_begin TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1381 func_echo "<TH ALIGN=LEFT>Module"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1382 func_echo "<TH ALIGN=LEFT>Header"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1383 func_echo "<TH ALIGN=LEFT>Implementation"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1384 func_echo "<TH ALIGN=LEFT>Autoconf macro"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1385 func_echo "<TH ALIGN=LEFT>Depends on"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1386 func_end TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1387 fi
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1388 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1389
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1390 # func_module module
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1391 func_module ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1392 {
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1393 sed_remove_trailing_empty_line='${
4137
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
1394 /^$/d
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
1395 }'
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
1396
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1397 if test -n "$in_toc"; then
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1398
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1399 func_begin TR "WIDTH=\"100%\""
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1400
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1401 element='<A HREF="#module='$1'">'$1'</A>'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1402 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
1403
9550
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1404 # Rendering the description:
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1405 # - 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
1406 # 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
1407 # - 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
1408 # - Change 'xxx' to <CODE>xxx</CODE>.
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1409 element=`gnulib-tool --extract-description $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1410 | sed -e "$sed_lt" -e "$sed_gt" -e "$sed_remove_trailing_empty_line" \
9550
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1411 -e 's,^, ,' -e 's,$, ,' \
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1412 -e 's,\([^a-zA-Z_]\)'"${posix_functions}"'() \(function\|macro\),\1<A HREF="'"$POSIX2001_URL"'xsh/\2.html">\2</A> \3,g' \
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1413 -e 's,\([^a-zA-Z_]\)'"${posix_functions}"' \(function\|macro\),\1<A HREF="'"$POSIX2001_URL"'xsh/\2.html">\2</A> \3,g' \
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1414 -e 's,\([^a-zA-Z_]\)'"${posix_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' \
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1415 -e 's,\([^a-zA-Z_]\)\([a-zA-Z_][a-zA-Z0-9_]*\)() \(function\|macro\),\1\2 \3,g' \
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1416 -e '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' \
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1417 -e 's, '"'"'\([a-zA-Z0-9_ -]*\)'"'"'\([^a-zA-Z0-9_]\), <CODE>\1</CODE>\2,g' \
6bc27027a2d6 Avoid using the syntax symbol() in formatted documentation.
Bruno Haible <bruno@clisp.org>
parents: 9478
diff changeset
1418 -e 's,^ ,,' -e 's, $,,'`
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1419 func_echo "<TD ALIGN=LEFT VALIGN=TOP WIDTH=\"80%\">$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1420
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1421 func_end TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1422
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1423 else
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1424
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1425 func_begin TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1426
7849
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
1427 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
1428 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1429
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1430 includes=`gnulib-tool --extract-include-directive $1`
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1431 files=`gnulib-tool --extract-filelist $1 \
8635
1007931cdf70 (func_module): missing '.
Karl Berry <karl@freefriends.org>
parents: 8598
diff changeset
1432 | grep -v '^m4/gnulib-common\.m4$'`
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1433 element=`echo "$includes" \
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1434 | sed -e "$sed_lt" -e "$sed_gt" -e "$sed_remove_trailing_empty_line" \
7849
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
1435 -e 's,^#include "\(.*\)"$,#include "<A HREF="'$repo_url_prefix'lib/\1'$repo_url_suffix_repl'">\1</A>",' \
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1436 -e 's,^#include &lt;'"${posix_headers}"'\.h&gt;$,#include \&lt;<A HREF="'"$POSIX2001_URL"'xbd/\1.h.html">\1.h</A>\&gt;,' \
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1437 -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
1438 test -n "$element" || element='---'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1439 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1440
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1441 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
1442 includefile=`echo "$includes" \
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1443 | sed -n -e "$sed_choose_unconditional_nonstandard_include" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1444 | sed -e "$sed_escape_dot" | tr -d "$trnl"`
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1445 sed_choose_lib_files='s,^lib/\(.*\)$,\1,p'
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1446 element=`echo "$files" \
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1447 | sed -e '/^$/d' \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1448 | sed -n -e "$sed_choose_lib_files" \
9088
f5d60677ace5 avoid error on files in subdirs
Karl Berry <karl@freefriends.org>
parents: 9070
diff changeset
1449 | sed -e '\|^'"${includefile}"'$|d' \
7849
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
1450 -e 's,^\(.*\)$,<A HREF="'$repo_url_prefix'lib/\1'$repo_url_suffix_repl'">\1</A>,' \
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1451 -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
1452 test -n "$element" || element='---'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1453 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1454
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1455 sed_choose_m4_files='s,^m4/\(.*\)$,\1,p'
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1456 element=`(echo "$files" \
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1457 | sed -e "$sed_remove_trailing_empty_line" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1458 | sed -n -e "$sed_choose_m4_files" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1459 | sed -e '/^onceonly/d' \
7849
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
1460 -e 's,^\(.*\)$,<A HREF="'$repo_url_prefix'm4/\1'$repo_url_suffix_repl'">\1</A>,'; \
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1461 gnulib-tool --extract-autoconf-snippet $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1462 | sed -e "$sed_remove_trailing_empty_line") \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1463 | 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
1464 test -n "$element" || element='---'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1465 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1466
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1467 element=`gnulib-tool --extract-dependencies $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1468 | 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
1469 -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
1470 test -n "$element" || element='---'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1471 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1472
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1473 func_end TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1474
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
1475 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
1476 func_append seen_files " $files"
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1477 fi
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1478 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1479
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1480 # func_end_table
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1481 func_end_table ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1482 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1483 func_end TABLE
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1484 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1485
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1486 # func_all_modules
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1487 func_all_modules ()
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1488 {
10459
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1489 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
1490 func_section_wrap ansic_sup_obsolete
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1491 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1492 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1493
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1494 func_begin_table
8190
6917857967a1 New module 'stdlib'.
Bruno Haible <bruno@clisp.org>
parents: 8188
diff changeset
1495 func_module stdlib
4201
bd8ff0653fc8 New module 'exit'.
Bruno Haible <bruno@clisp.org>
parents: 4198
diff changeset
1496 func_module exit
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1497 func_module strtol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1498 func_module strtoul
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1499 func_module memchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1500 func_module memcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1501 func_module memcpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1502 func_module memmove
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1503 func_module memset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1504 func_module strcspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1505 func_module strpbrk
10459
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1506 func_end_table
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1507
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1508 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
1509 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
1510
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1511 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
1512 func_section_wrap ansic_sup
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1513 func_wrap H2
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1514 func_echo "$element"
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1515
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1516 func_begin_table
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1517 func_module atexit
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
1518 func_module strtod
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1519 func_module strerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1520 func_module mktime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1521 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1522
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1523 element="Enhancements for ANSI C 89 functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1524 func_section_wrap ansic_enh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1525 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1526 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1527
6267
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1528 element="Diagnostics <assert.h>"
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1529 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
1530 func_section_wrap ansic_enh_assert_diagnostics
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1531 func_wrap H3
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1532 func_echo "$element"
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1533
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1534 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
1535 func_module assert
6267
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1536 func_module verify
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1537 func_end_table
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1538
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1539 element="Mathematics <math.h>"
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1540 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
1541 func_section_wrap ansic_enh_math
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1542 func_wrap H3
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1543 func_echo "$element"
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1544
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1545 func_begin_table
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1546 func_module fpieee
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1547 func_end_table
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1548
8162
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1549 element="Input/output <stdio.h>"
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1550 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1551 func_section_wrap ansic_enh_stdio
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1552 func_wrap H3
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1553 func_echo "$element"
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1554
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1555 func_begin_table
8657
05f21166eb81 * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
Eric Blake <ebb9@byu.net>
parents: 8637
diff changeset
1556 func_module fflush
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1557 func_module fseterr
8162
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1558 func_module tmpfile
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1559 func_end_table
46995f2e94ca New module 'tmpfile'.
Bruno Haible <bruno@clisp.org>
parents: 8159
diff changeset
1560
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1561 element="Memory management functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1562 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
1563 func_section_wrap ansic_enh_stdlib_memory
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1564 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1565 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1566
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1567 func_begin_table
5090
c95736363690 (func_all_modules): Add calloc, to match
Paul Eggert <eggert@cs.ucla.edu>
parents: 5004
diff changeset
1568 func_module calloc
4922
2050defa7dab New module 'eealloc'.
Bruno Haible <bruno@clisp.org>
parents: 4883
diff changeset
1569 func_module eealloc
5004
0d750c5a291b (func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents: 4940
diff changeset
1570 func_module free
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1571 func_module malloc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1572 func_module realloc
5682
f8c8874bd832 New module 'pagealign_alloc'.
Bruno Haible <bruno@clisp.org>
parents: 5655
diff changeset
1573 func_module pagealign_alloc
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1574 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1575
8046
d95ff1660f83 * MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7973
diff changeset
1576 element="Sorting functions <stdlib.h>"
d95ff1660f83 * MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7973
diff changeset
1577 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
1578 func_section_wrap ansic_enh_stdlib_sorting
d95ff1660f83 * MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7973
diff changeset
1579 func_wrap H3
d95ff1660f83 * MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7973
diff changeset
1580 func_echo "$element"
d95ff1660f83 * MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7973
diff changeset
1581
d95ff1660f83 * MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7973
diff changeset
1582 func_begin_table
d95ff1660f83 * MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7973
diff changeset
1583 func_module mpsort
d95ff1660f83 * MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7973
diff changeset
1584 func_end_table
d95ff1660f83 * MODULES.html.sh: New module mpsort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7973
diff changeset
1585
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1586 element="Date and time <time.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1587 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
1588 func_section_wrap ansic_enh_time_datetime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1589 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1590 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1591
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1592 func_begin_table
6492
f65821c002c5 (Date and time <time.h>): Add fprintftime.
Jim Meyering <jim@meyering.net>
parents: 6360
diff changeset
1593 func_module fprintftime
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1594 func_module strftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1595 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1596
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1597 element="Extra functions based on ANSI C 89"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1598 func_section_wrap ansic_ext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1599 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1600 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1601
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1602 element="Memory management functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1603 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
1604 func_section_wrap ansic_ext_stdlib_memory
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1605 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1606 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1607
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1608 func_begin_table
4883
e36fe7f8dec3 Add xsize. Forgotten commit on 2003-11-04.
Bruno Haible <bruno@clisp.org>
parents: 4802
diff changeset
1609 func_module xsize
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1610 func_module xalloc
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1611 func_module xalloc-die
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1612 func_module alloca
5273
0e6f016e3192 New modules 'alloca-opt'.
Bruno Haible <bruno@clisp.org>
parents: 5219
diff changeset
1613 func_module alloca-opt
8950
53b90318e324 Update after allocsa -> malloca renaming.
Bruno Haible <bruno@clisp.org>
parents: 8872
diff changeset
1614 func_module malloca
53b90318e324 Update after allocsa -> malloca renaming.
Bruno Haible <bruno@clisp.org>
parents: 8872
diff changeset
1615 func_module xmalloca
10068
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents: 10058
diff changeset
1616 func_module xmemdup0
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1617 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1618
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1619 element="Integer arithmetic functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1620 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
1621 func_section_wrap ansic_ext_stdlib_arith
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1622 func_wrap H3
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
9122
f547a45baada Improve name: "count-one-bits" is better than "popcount".
Ben Pfaff <blp@gnu.org>
parents: 9116
diff changeset
1626 func_module count-one-bits
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1627 func_module gcd
4207
b9f1372430fa New module minmax.
Bruno Haible <bruno@clisp.org>
parents: 4201
diff changeset
1628 func_module minmax
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1629 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1630
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1631 element="Environment variables <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1632 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
1633 func_section_wrap ansic_ext_stdlib_env
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1634 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1635 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1636
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1637 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1638 func_module putenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1639 func_module setenv
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
1640 func_module unsetenv
4215
12551f0a3830 New module xsetenv.
Bruno Haible <bruno@clisp.org>
parents: 4207
diff changeset
1641 func_module xsetenv
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1642 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1643
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1644 element="Character handling <ctype.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1645 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
1646 func_section_wrap ansic_ext_ctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1647 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1648 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1649
4221
06a92cabf1fc New module stpncpy.
Bruno Haible <bruno@clisp.org>
parents: 4215
diff changeset
1650 func_begin_table
06a92cabf1fc New module stpncpy.
Bruno Haible <bruno@clisp.org>
parents: 4215
diff changeset
1651 func_module c-ctype
06a92cabf1fc New module stpncpy.
Bruno Haible <bruno@clisp.org>
parents: 4215
diff changeset
1652 func_end_table
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1653
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1654 element="String handling <string.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1655 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
1656 func_section_wrap ansic_ext_string
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1657 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1658 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1659
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1660 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1661 func_module bcopy
9742
732f01bce79f New module 'memchr2'.
Eric Blake <ebb9@byu.net>
parents: 9738
diff changeset
1662 func_module memchr2
5317
55fa1d36be4b (Extra functions based on ANSI C 89): Add memmem.
Simon Josefsson <simon@josefsson.org>
parents: 5292
diff changeset
1663 func_module memmem
9591
83fd101f67f0 Add memmem-simple module.
Eric Blake <ebb9@byu.net>
parents: 9550
diff changeset
1664 func_module memmem-simple
4456
db99894dd9b7 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents: 4405
diff changeset
1665 func_module mempcpy
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1666 func_module memrchr
10005
104414f62d0d Document rawmemchr.
Eric Blake <ebb9@byu.net>
parents: 9811
diff changeset
1667 func_module rawmemchr
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1668 func_module stpcpy
4221
06a92cabf1fc New module stpncpy.
Bruno Haible <bruno@clisp.org>
parents: 4215
diff changeset
1669 func_module stpncpy
6359
dbf2af5391cd New module 'c-strcase'.
Bruno Haible <bruno@clisp.org>
parents: 6267
diff changeset
1670 func_module c-strcase
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1671 func_module strcase
7935
6de574c3019f New modules streq, c-strcaseeq.
Bruno Haible <bruno@clisp.org>
parents: 7919
diff changeset
1672 func_module c-strcaseeq
6360
74a5018452c0 New module 'c-strcasestr'.
Bruno Haible <bruno@clisp.org>
parents: 6359
diff changeset
1673 func_module c-strcasestr
6058
a7440145d6a9 New module 'strcasestr'.
Bruno Haible <bruno@clisp.org>
parents: 6055
diff changeset
1674 func_module strcasestr
9623
69d9307c0aa0 Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents: 9600
diff changeset
1675 func_module strcasestr-simple
4388
889d35a53bf1 New modules strchrnul, argp.
Bruno Haible <bruno@clisp.org>
parents: 4294
diff changeset
1676 func_module strchrnul
7935
6de574c3019f New modules streq, c-strcaseeq.
Bruno Haible <bruno@clisp.org>
parents: 7919
diff changeset
1677 func_module streq
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1678 func_module strnlen
6047
085fe0908938 New module 'strnlen1'.
Bruno Haible <bruno@clisp.org>
parents: 6046
diff changeset
1679 func_module strnlen1
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1680 func_module strndup
5292
facb079a01da New module 'strsep'.
Bruno Haible <bruno@clisp.org>
parents: 5283
diff changeset
1681 func_module strsep
9600
99268e709d31 Avoid quadratic strstr implementations.
Eric Blake <ebb9@byu.net>
parents: 9591
diff changeset
1682 func_module strstr
7209
b528c3e6739e New module 'c-strstr'.
Bruno Haible <bruno@clisp.org>
parents: 7199
diff changeset
1683 func_module c-strstr
7258
448f74ab8f39 New 'trim' module, from Davide Angelocola <davide.angelocola@tiscali.it>.
Bruno Haible <bruno@clisp.org>
parents: 7235
diff changeset
1684 func_module trim
9151
8c5ddfde42d6 Fuzzy string comparison.
Bruno Haible <bruno@clisp.org>
parents: 9147
diff changeset
1685 func_module fstrcmp
4587
db90c263cc55 Add an include file to module 'strndup'.
Bruno Haible <bruno@clisp.org>
parents: 4524
diff changeset
1686 func_module xstrndup
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1687 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1688
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1689 element="Mathematics <math.h>"
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1690 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
1691 func_section_wrap ansic_ext_math
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1692 func_wrap H3
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1693 func_echo "$element"
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1694
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1695 func_begin_table
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1696 func_module printf-frexp
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1697 func_end_table
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1698
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1699 element="Numeric conversion functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1700 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
1701 func_section_wrap ansic_ext_stdlib_conv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1702 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1703 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1704
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1705 func_begin_table
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1706 func_module c-strtod
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1707 func_module c-strtold
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1708 func_module xstrtod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1709 func_module xstrtol
6912
314715e0260d Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6899
diff changeset
1710 func_module xstrtold
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1711 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1712
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1713 element="Date and time <time.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1714 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
1715 func_section_wrap ansic_ext_time_datetime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1716 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1717 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1718
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1719 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1720 func_module getdate
4616
40e97ca1f46c New module 'timegm'.
Bruno Haible <bruno@clisp.org>
parents: 4603
diff changeset
1721 func_module timegm
5004
0d750c5a291b (func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents: 4940
diff changeset
1722 func_module tzset
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1723 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1724
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1725 element="Input/Output <stdio.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1726 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
1727 func_section_wrap ansic_ext_stdio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1728 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1729 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1730
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1731 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1732 func_module unlocked-io
4715
7955c362317f New module 'fwriteerror'.
Bruno Haible <bruno@clisp.org>
parents: 4621
diff changeset
1733 func_module fwriteerror
4224
83eabea25586 New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents: 4221
diff changeset
1734 func_module vasnprintf
83eabea25586 New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents: 4221
diff changeset
1735 func_module vasprintf
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
1736 func_module xprintf
5218
f96c64693f86 New module 'xvasprintf'.
Bruno Haible <bruno@clisp.org>
parents: 5203
diff changeset
1737 func_module xvasprintf
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1738 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1739
4770
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1740 element="Signal handling <signal.h>"
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1741 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1742 func_section_wrap ansic_ext_signal
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1743 func_wrap H3
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1744 func_echo "$element"
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1745
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1746 func_begin_table
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1747 func_module fatal-signal
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1748 func_module raise
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
1749 func_module strsignal
4770
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1750 func_end_table
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1751
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1752 element="Command-line arguments"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1753 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
1754 func_section_wrap ansic_ext_argv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1755 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1756 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1757
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1758 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1759 func_module argmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1760 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
1761 func_module version-etc-fsf
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1762 func_module long-options
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1763 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1764
6985
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1765 element="Container data structures"
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1766 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
1767 func_section_wrap ansic_ext_container
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1768 func_wrap H3
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1769 func_echo "$element"
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1770
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1771 func_begin_table
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1772 func_module list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1773 func_module array-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1774 func_module carray-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1775 func_module linked-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1776 func_module avltree-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1777 func_module rbtree-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1778 func_module linkedhash-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1779 func_module avltreehash-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1780 func_module rbtreehash-list
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1781 func_module sublist
6985
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1782 func_module oset
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1783 func_module array-oset
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1784 func_module avltree-oset
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1785 func_module rbtree-oset
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1786 func_end_table
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1787
8637
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1788 element="Cryptographic computations (low-level)"
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1789 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
1790 func_section_wrap ansic_ext_crypto
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1791 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1792 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1793
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1794 func_begin_table
8637
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1795 func_module crypto/arcfour
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1796 func_module crypto/arctwo
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1797 func_module crypto/des
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1798 func_module crypto/hmac-md5
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1799 func_module crypto/hmac-sha1
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1800 func_module crypto/md2
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1801 func_module crypto/md4
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1802 func_module crypto/md5
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1803 func_module crypto/rijndael
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1804 func_module crypto/sha1
10058
e65afb893b33 New modules: crypto/sha256, crypto/sha512 (from coreutils)
Jim Meyering <meyering@redhat.com>
parents: 10057
diff changeset
1805 func_module crypto/sha256
e65afb893b33 New modules: crypto/sha256, crypto/sha512 (from coreutils)
Jim Meyering <meyering@redhat.com>
parents: 10057
diff changeset
1806 func_module crypto/sha512
8637
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1807 func_end_table
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1808
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1809 element="Cryptographic computations (high-level)"
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1810 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
1811 func_section_wrap ansic_ext_crypto2
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1812 func_wrap H3
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1813 func_echo "$element"
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1814
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1815 func_begin_table
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1816 func_module crypto/gc
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1817 func_module crypto/gc-arcfour
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1818 func_module crypto/gc-arctwo
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
1819 func_module crypto/gc-camellia
8637
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1820 func_module crypto/gc-des
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1821 func_module crypto/gc-hmac-md5
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1822 func_module crypto/gc-hmac-sha1
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1823 func_module crypto/gc-md2
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1824 func_module crypto/gc-md4
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1825 func_module crypto/gc-md5
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1826 func_module crypto/gc-pbkdf2-sha1
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1827 func_module crypto/gc-random
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1828 func_module crypto/gc-rijndael
dae0cc6e8465 2007-04-04 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8635
diff changeset
1829 func_module crypto/gc-sha1
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
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1832 element="Misc"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1833 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
1834 func_section_wrap ansic_ext_misc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1835 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1836 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1837
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1838 func_begin_table
5498
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents: 5434
diff changeset
1839 func_module base64
6028
5c3c29f4daf9 Fix typo in last commit.
Simon Josefsson <simon@josefsson.org>
parents: 6027
diff changeset
1840 func_module check-version
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1841 func_module crc
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1842 func_module diacrit
9147
d5c437e55b50 * MODULES.html.sh: Add diffseq.
Paul Eggert <eggert@cs.ucla.edu>
parents: 9122
diff changeset
1843 func_module diffseq
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1844 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
1845 func_module getdelim
4460
1892b6732a40 New module 'getnline'.
Bruno Haible <bruno@clisp.org>
parents: 4457
diff changeset
1846 func_module getnline
4463
7564fca8961e New module 'getndelim2'.
Bruno Haible <bruno@clisp.org>
parents: 4460
diff changeset
1847 func_module getndelim2
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1848 func_module linebuffer
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1849 func_module memxor
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1850 func_module obstack
10205
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents: 10085
diff changeset
1851 func_module obstack-printf
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents: 10085
diff changeset
1852 func_module obstack-printf-posix
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1853 func_module hash-pjw
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1854 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
1855 func_module readline
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1856 func_module readtokens
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1857 func_module readtokens0
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1858 func_module strverscmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1859 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1860
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1861 element="Support for systems lacking ISO C 99"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1862 func_section_wrap isoc_sup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1863 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1864 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1865
7564
a2d76523d6bc * modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7557
diff changeset
1866 element="Core language properties"
a2d76523d6bc * modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7557
diff changeset
1867 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
1868 func_section_wrap isoc_core_properties
a2d76523d6bc * modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7557
diff changeset
1869 func_wrap H3
a2d76523d6bc * modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7557
diff changeset
1870 func_echo "$element"
a2d76523d6bc * modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7557
diff changeset
1871
a2d76523d6bc * modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7557
diff changeset
1872 func_begin_table
7610
e856370de785 * MODULES.html.sh (Core language properties): New module flexmember.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7606
diff changeset
1873 func_module flexmember
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1874 func_module fpucw
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
1875 func_module func
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1876 func_module inline
10271
cd44816fe01c New module 'longlong'.
Ben Pfaff <blp@cs.stanford.edu>
parents: 10267
diff changeset
1877 func_module longlong
7564
a2d76523d6bc * modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7557
diff changeset
1878 func_module vararrays
a2d76523d6bc * modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7557
diff changeset
1879 func_end_table
a2d76523d6bc * modules/vararrays: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7557
diff changeset
1880
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
1881 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
1882 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
1883 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
1884 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
1885 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
1886
6445e932e417 (Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5598
diff changeset
1887 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
1888 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
1889 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
1890
6774
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1891 element="Variable arguments <stdarg.h>"
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1892 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1893 func_section_wrap isoc_sup_stdarg
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1894 func_wrap H3
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1895 func_echo "$element"
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1896
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1897 func_begin_table
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1898 func_module stdarg
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1899 func_end_table
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1900
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1901 element="Boolean type and values <stdbool.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1902 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
1903 func_section_wrap isoc_sup_stdbool
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1904 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1905 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1906
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1907 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1908 func_module stdbool
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
5219
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1911 element="Integer types and values <stdint.h>"
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1912 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1913 func_section_wrap isoc_sup_stdint
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1914 func_wrap H3
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1915 func_echo "$element"
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1916
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1917 func_begin_table
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1918 func_module stdint
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1919 func_end_table
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1920
5283
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1921 element="Input/output <stdio.h>"
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1922 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
1923 func_section_wrap isoc_sup_stdio
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1924 func_wrap H3
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1925 func_echo "$element"
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1926
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1927 func_begin_table
8209
7c6e1e927981 New module 'stdio'.
Bruno Haible <bruno@clisp.org>
parents: 8190
diff changeset
1928 func_module stdio
5283
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1929 func_module snprintf
5340
11ff7526b7b9 New module 'vsnprintf'.
Bruno Haible <bruno@clisp.org>
parents: 5317
diff changeset
1930 func_module vsnprintf
5283
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1931 func_end_table
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1932
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1933 element="Numeric conversion functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1934 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
1935 func_section_wrap isoc_sup_stdlib_conv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1936 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1937 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1938
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1939 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1940 func_module strtoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1941 func_module strtoull
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1942 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1943
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1944 element="Functions for greatest-width integer types <inttypes.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1945 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
1946 func_section_wrap isoc_sup_inttypes
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1947 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1948 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1949
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1950 func_begin_table
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1951 func_module imaxabs
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1952 func_module imaxdiv
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
1953 func_module inttypes
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1954 func_module strtoimax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1955 func_module strtoumax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1956 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1957
7860
708da4ac0ccd Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents: 7849
diff changeset
1958 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
1959 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
1960 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
1961 func_wrap H3
708da4ac0ccd Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents: 7849
diff changeset
1962 func_echo "$element"
708da4ac0ccd Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents: 7849
diff changeset
1963
708da4ac0ccd Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents: 7849
diff changeset
1964 func_begin_table
708da4ac0ccd Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents: 7849
diff changeset
1965 func_module wchar
708da4ac0ccd Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents: 7849
diff changeset
1966 func_end_table
708da4ac0ccd Provide a robust <wchar.h>. Further simplifications are now
Eric Blake <ebb9@byu.net>
parents: 7849
diff changeset
1967
7738
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1968 element="Wide character classification and mapping utilities <wctype.h>"
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1969 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1970 func_section_wrap isoc_sup_wctype
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1971 func_wrap H3
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1972 func_echo "$element"
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1973
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1974 func_begin_table
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1975 func_module wctype
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1976 func_end_table
923b69d92e46 Change order of sections.
Bruno Haible <bruno@clisp.org>
parents: 7736
diff changeset
1977
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1978 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
1979 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
1980 func_section_wrap isoc_sup_float
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1981 func_wrap H3
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1982 func_echo "$element"
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1983
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1984 func_begin_table
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1985 func_module float
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1986 func_end_table
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1987
4240
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1988 element="Mathematics <math.h>"
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1989 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1990 func_section_wrap isoc_sup_math
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1991 func_wrap H3
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1992 func_echo "$element"
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1993
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1994 func_begin_table
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
1995 func_module ceil
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1996 func_module ceilf
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1997 func_module ceill
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
1998 func_module floor
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
1999 func_module floorf
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2000 func_module floorl
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2001 func_module frexp
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2002 func_module frexp-nolibm
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2003 func_module frexpl
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2004 func_module frexpl-nolibm
9414
1c5d0b856e8b Implement 'isfinite' module.
Ben Pfaff <blp@cs.stanford.edu>
parents: 9375
diff changeset
2005 func_module isfinite
10287
7a5cfea8469f Add isinf module.
Ben Pfaff <blp@cs.stanford.edu>
parents: 10273
diff changeset
2006 func_module isinf
10267
bf763f10f63c Add isnan module.
Ben Pfaff <blp@cs.stanford.edu>
parents: 10266
diff changeset
2007 func_module isnan
10266
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents: 10265
diff changeset
2008 func_module isnanf
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2009 func_module isnanf-nolibm
10265
ecc1f86df809 Add isnand module.
Ben Pfaff <blp@cs.stanford.edu>
parents: 10229
diff changeset
2010 func_module isnand
9646
a113e473cc98 Rename isnan, applicable to 'double' only, to isnand.
Bruno Haible <bruno@clisp.org>
parents: 9623
diff changeset
2011 func_module isnand-nolibm
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2012 func_module isnanl
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2013 func_module isnanl-nolibm
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2014 func_module ldexpl
8188
470aabff2089 New module 'math'.
Bruno Haible <bruno@clisp.org>
parents: 8166
diff changeset
2015 func_module math
4240
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
2016 func_module mathl
9375
96fea5b2eb11 Implement 'round', 'roundf', 'roundl' modules.
Ben Pfaff <blp@cs.stanford.edu>
parents: 9319
diff changeset
2017 func_module round
96fea5b2eb11 Implement 'round', 'roundf', 'roundl' modules.
Ben Pfaff <blp@cs.stanford.edu>
parents: 9319
diff changeset
2018 func_module roundf
96fea5b2eb11 Implement 'round', 'roundf', 'roundl' modules.
Ben Pfaff <blp@cs.stanford.edu>
parents: 9319
diff changeset
2019 func_module roundl
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2020 func_module signbit
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2021 func_module trunc
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2022 func_module truncf
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2023 func_module truncl
4240
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
2024 func_end_table
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
2025
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2026 element="Enhancements for ISO C 99 functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2027 func_section_wrap isoc_enh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2028 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2029 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2030
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2031 element="Input/output <stdio.h>"
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2032 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
2033 func_section_wrap isoc_enh_stdio
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2034 func_wrap H3
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2035 func_echo "$element"
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2036
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2037 func_begin_table
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2038 func_module printf-safe
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2039 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2040
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2041 element="Extra functions based on ISO C 99"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2042 func_section_wrap isoc_ext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2043 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2044 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2045
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2046 element="Mathematics <math.h>"
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2047 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
2048 func_section_wrap isoc_ext_math
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2049 func_wrap H3
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2050 func_echo "$element"
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2051
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2052 func_begin_table
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2053 func_module printf-frexpl
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2054 func_end_table
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2055
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2056 element="Numeric conversion functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2057 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
2058 func_section_wrap isoc_ext_stdlib_conv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2059 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2060 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2061
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2062 func_begin_table
6657
25df81cf2f51 * modules/intprops: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6555
diff changeset
2063 func_module intprops
5004
0d750c5a291b (func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents: 4940
diff changeset
2064 func_module inttostr
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2065 func_module xstrtoimax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2066 func_module xstrtoumax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2067 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2068
6044
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2069 element="Extended multibyte and wide character utilities <wchar.h>"
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2070 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2071 func_section_wrap isoc_ext_wchar_mb
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2072 func_wrap H3
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2073 func_echo "$element"
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2074
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2075 func_begin_table
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2076 func_module mbchar
6045
283b5e8d287a New module 'mbiter'.
Bruno Haible <bruno@clisp.org>
parents: 6044
diff changeset
2077 func_module mbiter
6055
a87afe9c4648 New module 'mbuiter'.
Bruno Haible <bruno@clisp.org>
parents: 6047
diff changeset
2078 func_module mbuiter
6046
455e151721e5 New module 'mbfile'.
Bruno Haible <bruno@clisp.org>
parents: 6045
diff changeset
2079 func_module mbfile
6044
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2080 func_end_table
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
2081
10459
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2082 element="Support for obsolete systems lacking POSIX:2001"
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2083 func_section_wrap posix_sup_obsolete
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2084 func_wrap H2
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2085 func_echo "$element"
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2086
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2087 func_begin_table
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2088 func_module strdup
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2089 func_end_table
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2090
2819ac4d82da Clarify which modules are only for obsolete systems.
Bruno Haible <bruno@clisp.org>
parents: 10456
diff changeset
2091 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
2092 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
2093
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2094 element="Support for systems lacking POSIX:2001"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2095 func_section_wrap posix_sup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2096 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2097 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2098
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2099 func_begin_table
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2100 func_module arpa_inet
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2101 func_module calloc-posix
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2102 func_module chown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2103 func_module dup2
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2104 func_module environ
10425
44359c143462 New module 'errno'.
Bruno Haible <bruno@clisp.org>
parents: 10382
diff changeset
2105 func_module errno
7863
cb2590895141 New module 'fchdir'.
Bruno Haible <bruno@clisp.org>
parents: 7860
diff changeset
2106 func_module fchdir
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2107 func_module fcntl
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2108 func_module fopen
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2109 func_module fprintf-posix
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2110 func_module freopen
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2111 func_module fseek
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2112 func_module fseeko
10565
6dd4cb5e376f fsync: new module
Richard W.M. Jones <rjones@redhat.com>
parents: 10459
diff changeset
2113 func_module fsync
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2114 func_module ftell
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2115 func_module ftello
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2116 func_module ftruncate
5408
02eeb2ef41ed Add getaddrinfo.
Simon Josefsson <simon@josefsson.org>
parents: 5340
diff changeset
2117 func_module getaddrinfo
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
2118 func_module getcwd
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2119 func_module getgroups
4763
0d7756a5da9e Put gethostname into the right section.
Bruno Haible <bruno@clisp.org>
parents: 4762
diff changeset
2120 func_module gethostname
5889
ae0c1303f175 * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
Derek R. Price <derek@ximbiot.com>
parents: 5886
diff changeset
2121 func_module getlogin_r
5138
965e5e2eaeac New module 'getsubopt'.
Bruno Haible <bruno@clisp.org>
parents: 5113
diff changeset
2122 func_module getsubopt
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2123 func_module gettimeofday
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2124 func_module iconv_open
5825
96441be32be1 New module 'inet_ntop'.
Bruno Haible <bruno@clisp.org>
parents: 5813
diff changeset
2125 func_module inet_ntop
6850
3f958200ca97 Add inet_pton.
Simon Josefsson <simon@josefsson.org>
parents: 6774
diff changeset
2126 func_module inet_pton
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2127 func_module locale
8872
dfee3b4fd46c Fix lseek on mingw.
Eric Blake <ebb9@byu.net>
parents: 8772
diff changeset
2128 func_module lseek
dfee3b4fd46c Fix lseek on mingw.
Eric Blake <ebb9@byu.net>
parents: 8772
diff changeset
2129 func_module lstat
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2130 func_module malloc-posix
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2131 func_module mkdir
7575
483757159eb6 * MODULES.html.sh: Document tempname.
Eric Blake <ebb9@byu.net>
parents: 7564
diff changeset
2132 func_module mkdtemp
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2133 func_module mkstemp
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2134 func_module netinet_in
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2135 func_module open
10433
02b0f65bfbfc New module 'perror'.
Bruno Haible <bruno@clisp.org>
parents: 10427
diff changeset
2136 func_module perror
4242
eec6ba9ed532 New module poll, from Paolo Bonzini <bonzini@gnu.org>.
Bruno Haible <bruno@clisp.org>
parents: 4240
diff changeset
2137 func_module poll
8872
dfee3b4fd46c Fix lseek on mingw.
Eric Blake <ebb9@byu.net>
parents: 8772
diff changeset
2138 func_module printf-posix
4405
55fc591dca07 New module 'readlink'.
Bruno Haible <bruno@clisp.org>
parents: 4392
diff changeset
2139 func_module readlink
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2140 func_module realloc-posix
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2141 func_module signal
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2142 func_module sleep
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2143 func_module snprintf-posix
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2144 func_module sprintf-posix
10456
a821fdd7b2b7 New module 'strdup-posix'.
Bruno Haible <bruno@clisp.org>
parents: 10433
diff changeset
2145 func_module strdup-posix
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2146 func_module string
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2147 func_module strings
7575
483757159eb6 * MODULES.html.sh: Document tempname.
Eric Blake <ebb9@byu.net>
parents: 7564
diff changeset
2148 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
2149 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
2150 func_module time_r
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2151 func_module timespec
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2152 func_module nanosleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2153 func_module regex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2154 func_module rename
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2155 func_module rmdir
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2156 func_module search
10229
29502a2dd08a New module sigaction, for mingw.
Eric Blake <ebb9@byu.net>
parents: 10205
diff changeset
2157 func_module sigaction
7503
a55a9e67f244 New module 'sigprocmask'.
Bruno Haible <bruno@clisp.org>
parents: 7325
diff changeset
2158 func_module sigprocmask
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2159 func_module socklen
6031
ebb8bbda65c2 Add ssize_t.
Simon Josefsson <simon@josefsson.org>
parents: 6028
diff changeset
2160 func_module ssize_t
8048
005cc63d6763 New module 'strptime'. Initial fixes.
Bruno Haible <bruno@clisp.org>
parents: 8046
diff changeset
2161 func_module strptime
5434
a8dc5f46b8bf Add strtok_r.
Simon Josefsson <simon@josefsson.org>
parents: 5408
diff changeset
2162 func_module strtok_r
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2163 func_module sys_select
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2164 func_module sys_socket
6899
4f743199c786 * MODULES.html.sh: Add sys_stat.
Eric Blake <ebb9@byu.net>
parents: 6889
diff changeset
2165 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
2166 func_module sys_time
7585
0cac6db530a1 New module 'tsearch'.
Bruno Haible <bruno@clisp.org>
parents: 7575
diff changeset
2167 func_module tsearch
6691
a5b9b6b26301 * MODULES.html.sh (Support for systems lacking POSIX:2001):
Paul Eggert <eggert@cs.ucla.edu>
parents: 6657
diff changeset
2168 func_module unistd
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2169 func_module utime
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2170 func_module vasnprintf-posix
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2171 func_module vasprintf-posix
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2172 func_module vfprintf-posix
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2173 func_module vprintf-posix
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2174 func_module vsnprintf-posix
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2175 func_module vsprintf-posix
6878
9ae5979172e8 * modules/wcwidth: New file.
Eric Blake <ebb9@byu.net>
parents: 6850
diff changeset
2176 func_module wcwidth
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2177 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2178
7162
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2179 element="Compatibility checks for POSIX:2001 functions"
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2180 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
2181 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
2182 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
2183
7194
798177a9e648 Fix HTML structure.
Bruno Haible <bruno@clisp.org>
parents: 7184
diff changeset
2184 func_begin_table
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2185 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
2186 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
2187 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
2188 func_module link-follow
7306
57043fbf87a2 [ChangeLog]
Jim Meyering <jim@meyering.net>
parents: 7263
diff changeset
2189 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
2190 func_module rmdir-errno
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2191 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
2192 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
2193 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
2194 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
2195
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2196 element="Enhancements for POSIX:2001 functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2197 func_section_wrap posix_enh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2198 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2199 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2200
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2201 func_begin_table
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2202 func_module chdir-long
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2203 func_module dirname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2204 func_module getopt
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2205 func_module iconv_open-utf
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2206 func_module unistd-safer
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2207 func_module fnmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2208 func_module fnmatch-posix
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2209 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
2210 func_module glob
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2211 func_module exclude
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2212 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2213
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2214 element="Extra functions based on POSIX:2001"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2215 func_section_wrap posix_ext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2216 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2217 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2218
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2219 element="Input/output"
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2220 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2221 func_section_wrap posix_ext_stdio
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2222 func_wrap H3
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2223 func_echo "$element"
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2224
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2225 func_begin_table
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2226 func_module xprintf-posix
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2227 func_module xvasprintf-posix
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2228 func_end_table
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2229
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2230 element="Numeric conversion functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2231 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
2232 func_section_wrap posix_ext_conv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2233 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2234 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2235
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2236 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2237 func_module human
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2238 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2239
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2240 element="File system functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2241 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
2242 func_section_wrap posix_ext_filesys
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2243 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2244 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2245
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2246 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2247 func_module acl
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2248 func_module areadlink
9170
47acf8bc4225 finish mreadlink_with_size rename
Karl Berry <karl@freefriends.org>
parents: 9158
diff changeset
2249 func_module areadlink-with-size
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2250 func_module backupfile
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
2251 func_module canonicalize
7606
2ffea8d27e08 * MODULES.html.sh (File system functions): New module
Paul Eggert <eggert@cs.ucla.edu>
parents: 7585
diff changeset
2252 func_module canonicalize-lgpl
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2253 func_module chdir-safer
7044
4165bec5f3a2 New module 'clean-temp'.
Bruno Haible <bruno@clisp.org>
parents: 7043
diff changeset
2254 func_module clean-temp
4269
45a2c0a1d4bb New module copy-file.
Bruno Haible <bruno@clisp.org>
parents: 4242
diff changeset
2255 func_module copy-file
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2256 func_module fsusage
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2257 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
2258 func_module double-slash-root
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2259 func_module euidaccess
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2260 func_module file-type
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2261 func_module fileblocks
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2262 func_module filemode
8251
1e16373508e1 Rename module 'pathname' to 'filename'.
Bruno Haible <bruno@clisp.org>
parents: 8209
diff changeset
2263 func_module filename
5907
c47674a83a78 Sync from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5902
diff changeset
2264 func_module filenamecat
5872
fab6701e5cb2 New fts module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5852
diff changeset
2265 func_module fts
fab6701e5cb2 New fts module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5852
diff changeset
2266 func_module fts-lgpl
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2267 func_module isdir
7162
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2268 func_module lchmod
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2269 func_module lchown
6970
31455307b983 Fix mispelling in previous change: mkancestors -> mkancesdirs
Paul Eggert <eggert@cs.ucla.edu>
parents: 6969
diff changeset
2270 func_module mkancesdirs
5907
c47674a83a78 Sync from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5902
diff changeset
2271 func_module mkdir-p
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2272 func_module modechange
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2273 func_module mountlist
7678
1757949a7c72 * MODULES.html.sh (File system functions): Add openat.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7656
diff changeset
2274 func_module openat
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2275 func_module openat-die
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2276 func_module pathmax
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2277 func_module read-file
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2278 func_module same
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2279 func_module save-cwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2280 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
2281 func_module savewd
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2282 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
2283 func_module stat-time
7043
4f84bccd7da0 New module 'tmpdir'.
Bruno Haible <bruno@clisp.org>
parents: 7034
diff changeset
2284 func_module tmpdir
5852
995d030c6a1f New unlinkdir module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5848
diff changeset
2285 func_module unlinkdir
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
2286 func_module utimecmp
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
2287 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
2288 func_module write-any-file
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2289 func_module xgetcwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2290 func_module xreadlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2291 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2292
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2293 element="File system as inode set"
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2294 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
2295 func_section_wrap posix_ext_inodeset
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2296 func_wrap H3
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2297 func_echo "$element"
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2298
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2299 func_begin_table
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2300 func_module cycle-check
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2301 func_module dev-ino
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2302 func_module file-set
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2303 func_module hash-triple
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2304 func_module i-ring
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2305 func_module same-inode
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2306 func_end_table
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2307
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2308 element="File descriptor based Input/Output"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2309 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
2310 func_section_wrap posix_ext_filedesc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2311 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2312 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2313
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2314 func_begin_table
6098
e334970e0ec6 (File descriptor based Input/Output): Add fcntl-safer.
Jim Meyering <jim@meyering.net>
parents: 6058
diff changeset
2315 func_module fcntl-safer
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2316 func_module safe-read
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2317 func_module safe-write
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2318 func_module full-read
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2319 func_module full-write
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents: 4271
diff changeset
2320 func_module binary-io
7233
ec85aace506a * modules/isapipe: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7209
diff changeset
2321 func_module isapipe
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2322 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2323
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2324 element="File stream based Input/Output"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2325 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
2326 func_section_wrap posix_ext_filestream
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2327 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2328 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2329
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2330 func_begin_table
7046
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
2331 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
2332 func_module closein
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2333 func_module closeout
9158
d45f26a2b8ff New module 'freadahead'.
Bruno Haible <bruno@clisp.org>
parents: 9151
diff changeset
2334 func_module fbufmode
7046
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
2335 func_module fopen-safer
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
2336 func_module fpending
9158
d45f26a2b8ff New module 'freadahead'.
Bruno Haible <bruno@clisp.org>
parents: 9151
diff changeset
2337 func_module fpurge
d45f26a2b8ff New module 'freadahead'.
Bruno Haible <bruno@clisp.org>
parents: 9151
diff changeset
2338 func_module freadable
d45f26a2b8ff New module 'freadahead'.
Bruno Haible <bruno@clisp.org>
parents: 9151
diff changeset
2339 func_module freadahead
8720
367787d55c9c Implement freading and fwriting.
Eric Blake <ebb9@byu.net>
parents: 8674
diff changeset
2340 func_module freading
9727
7c1260f0aac3 New module 'freadptr'.
Bruno Haible <bruno@clisp.org>
parents: 9684
diff changeset
2341 func_module freadptr
9738
923434ebe936 New module 'freadseek'.
Bruno Haible <bruno@clisp.org>
parents: 9727
diff changeset
2342 func_module freadseek
9158
d45f26a2b8ff New module 'freadahead'.
Bruno Haible <bruno@clisp.org>
parents: 9151
diff changeset
2343 func_module fwritable
8720
367787d55c9c Implement freading and fwriting.
Eric Blake <ebb9@byu.net>
parents: 8674
diff changeset
2344 func_module fwriting
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2345 func_module getpass
4490
3994ca24c3a0 New module 'getpass-gnu'.
Bruno Haible <bruno@clisp.org>
parents: 4463
diff changeset
2346 func_module getpass-gnu
7046
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
2347 func_module stdlib-safer
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
2348 func_module tmpfile-safer
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2349 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2350
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2351 element="Users and groups"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2352 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
2353 func_section_wrap posix_ext_uidgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2354 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2355 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2356
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2357 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2358 func_module getugroups
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2359 func_module group-member
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2360 func_module idcache
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2361 func_module userspec
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2362 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2363
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2364 element="Date and time"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2365 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
2366 func_section_wrap posix_ext_datetime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2367 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2368 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2369
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2370 func_begin_table
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2371 func_module gethrxtime
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2372 func_module gettime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2373 func_module settime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2374 func_module posixtm
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
2375 func_module xnanosleep
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2376 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2377
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2378 element="Networking functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2379 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
2380 func_section_wrap posix_ext_net
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2381 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2382 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2383
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2384 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2385 func_module xgethostname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2386 func_module canon-host
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2387 func_module sockets
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2388 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2389
5994
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2390 element="Multithreading"
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2391 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2392 func_section_wrap posix_ext_thread
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2393 func_wrap H3
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2394 func_echo "$element"
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2395
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2396 func_begin_table
10320
984531f1792d New module 'threadlib'.
Bruno Haible <bruno@clisp.org>
parents: 10287
diff changeset
2397 func_module threadlib
5994
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2398 func_module lock
6042
ab97b105b804 New module 'tls'.
Bruno Haible <bruno@clisp.org>
parents: 6031
diff changeset
2399 func_module tls
10327
a9d3f42042b7 New module 'thread'.
Bruno Haible <bruno@clisp.org>
parents: 10324
diff changeset
2400 func_module thread
10329
b4b925d625c0 New module 'yield'.
Bruno Haible <bruno@clisp.org>
parents: 10327
diff changeset
2401 func_module yield
10324
10b52c4ba8a9 Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10320
diff changeset
2402 func_module cond
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2403 func_module openmp
5994
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2404 func_end_table
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2405
10273
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2406 element="Signal handling"
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2407 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2408 func_section_wrap posix_ext_signal
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2409 func_wrap H3
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2410 func_echo "$element"
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2411
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2412 func_begin_table
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2413 func_module c-stack
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2414 func_module libsigsegv
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2415 func_module sig2str
10382
682dd60a37e4 New module 'sigpipe-die'.
Bruno Haible <bruno@clisp.org>
parents: 10373
diff changeset
2416 func_module sigpipe-die
10273
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2417 func_end_table
90d8e4d99330 New module 'libsigsegv'.
Bruno Haible <bruno@clisp.org>
parents: 10271
diff changeset
2418
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2419 element="Internationalization functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2420 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
2421 func_section_wrap posix_ext_i18n
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2422 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2423 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2424
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2425 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2426 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
2427 func_module gettext-h
10085
6eeccac8ebca New module 'propername', moved here from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents: 10080
diff changeset
2428 func_module propername
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2429 func_module iconv
7263
461dfc79ca17 New modules 'striconv' and 'xstriconv'.
Bruno Haible <bruno@clisp.org>
parents: 7258
diff changeset
2430 func_module striconv
461dfc79ca17 New modules 'striconv' and 'xstriconv'.
Bruno Haible <bruno@clisp.org>
parents: 7258
diff changeset
2431 func_module xstriconv
7882
6f33d1eaefa7 New module 'striconveh'.
Bruno Haible <bruno@clisp.org>
parents: 7863
diff changeset
2432 func_module striconveh
7919
b7b7885895a6 New module 'striconveha'.
Bruno Haible <bruno@clisp.org>
parents: 7897
diff changeset
2433 func_module striconveha
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2434 func_module localcharset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2435 func_module hard-locale
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2436 func_module localename
8126
c534d48f4224 New module 'mbslen'.
Bruno Haible <bruno@clisp.org>
parents: 8112
diff changeset
2437 func_module mbslen
8968
236e8277b9b1 New module 'mbsnlen'.
Bruno Haible <bruno@clisp.org>
parents: 8960
diff changeset
2438 func_module mbsnlen
8083
c8815c37b48c New module 'mbschr'.
Bruno Haible <bruno@clisp.org>
parents: 8062
diff changeset
2439 func_module mbschr
8085
452a78f76352 New module 'mbsrchr'.
Bruno Haible <bruno@clisp.org>
parents: 8083
diff changeset
2440 func_module mbsrchr
8088
56a0105d8cf3 New module 'mbsstr'. Remove module 'strstr'.
Bruno Haible <bruno@clisp.org>
parents: 8085
diff changeset
2441 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
2442 func_module mbscasecmp
8156
4610755b157b New module 'mbsncasecmp'.
Bruno Haible <bruno@clisp.org>
parents: 8146
diff changeset
2443 func_module mbsncasecmp
8159
a6b23644124f New module 'mbspcasecmp'.
Bruno Haible <bruno@clisp.org>
parents: 8156
diff changeset
2444 func_module mbspcasecmp
8098
cc3f4a2db5b0 New module 'mbscasestr'. Reduced goal of 'strcasestr'.
Bruno Haible <bruno@clisp.org>
parents: 8091
diff changeset
2445 func_module mbscasestr
8103
df6746e056ee New module 'mbscspn'.
Bruno Haible <bruno@clisp.org>
parents: 8098
diff changeset
2446 func_module mbscspn
8104
9d0175f6442d New module 'mbspbrk'.
Bruno Haible <bruno@clisp.org>
parents: 8103
diff changeset
2447 func_module mbspbrk
8105
43f02832d528 New module 'mbsspn'.
Bruno Haible <bruno@clisp.org>
parents: 8104
diff changeset
2448 func_module mbsspn
8112
c4c7688aa9bd New module 'mbssep'.
Bruno Haible <bruno@clisp.org>
parents: 8106
diff changeset
2449 func_module mbssep
8106
2ff19298dd56 New module 'mbstok_r'.
Bruno Haible <bruno@clisp.org>
parents: 8105
diff changeset
2450 func_module mbstok_r
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2451 func_module mbswidth
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2452 func_module memcasecmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2453 func_module memcoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2454 func_module xmemcoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2455 func_module unicodeio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2456 func_module rpmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2457 func_module yesno
7791
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2458 func_module bison-i18n
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2459 func_end_table
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2460
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2461 element="Unicode string functions"
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2462 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
2463 func_section_wrap posix_ext_unicode
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2464 func_wrap H3
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2465 func_echo "$element"
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2466
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2467 func_begin_table
dc1b4b5f8246 Basic types for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 7754
diff changeset
2468 func_module unitypes
4275
e272bc901785 New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
2469 func_module ucs4-utf8
e272bc901785 New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
2470 func_module ucs4-utf16
8062
e6aed2dfd436 Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents: 8048
diff changeset
2471 func_module utf8-ucs4-unsafe
e6aed2dfd436 Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents: 8048
diff changeset
2472 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
2473 func_module utf8-ucs4
e272bc901785 New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
2474 func_module utf16-ucs4
7848
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2475 func_module unistr/base
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2476 func_module unistr/u8-to-u16
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2477 func_module unistr/u8-to-u32
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2478 func_module unistr/u16-to-u8
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2479 func_module unistr/u16-to-u32
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2480 func_module unistr/u32-to-u8
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2481 func_module unistr/u32-to-u16
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2482 func_module unistr/u8-check
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2483 func_module unistr/u16-check
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2484 func_module unistr/u32-check
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2485 func_module unistr/u8-chr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2486 func_module unistr/u16-chr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2487 func_module unistr/u32-chr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2488 func_module unistr/u8-cmp
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2489 func_module unistr/u16-cmp
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2490 func_module unistr/u32-cmp
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2491 func_module unistr/u8-cpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2492 func_module unistr/u16-cpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2493 func_module unistr/u32-cpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2494 func_module unistr/u8-cpy-alloc
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2495 func_module unistr/u16-cpy-alloc
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2496 func_module unistr/u32-cpy-alloc
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2497 func_module unistr/u8-endswith
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2498 func_module unistr/u16-endswith
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2499 func_module unistr/u32-endswith
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2500 func_module unistr/u8-mblen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2501 func_module unistr/u16-mblen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2502 func_module unistr/u32-mblen
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2503 func_module unistr/u8-mbsnlen
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2504 func_module unistr/u16-mbsnlen
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2505 func_module unistr/u32-mbsnlen
8062
e6aed2dfd436 Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents: 8048
diff changeset
2506 func_module unistr/u8-mbtouc-unsafe
e6aed2dfd436 Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents: 8048
diff changeset
2507 func_module unistr/u16-mbtouc-unsafe
e6aed2dfd436 Fix module name list after recent renamings.
Bruno Haible <bruno@clisp.org>
parents: 8048
diff changeset
2508 func_module unistr/u32-mbtouc-unsafe
7848
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2509 func_module unistr/u8-mbtouc
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2510 func_module unistr/u16-mbtouc
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2511 func_module unistr/u32-mbtouc
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2512 func_module unistr/u8-mbtoucr
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2513 func_module unistr/u16-mbtoucr
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2514 func_module unistr/u32-mbtoucr
7848
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2515 func_module unistr/u8-move
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2516 func_module unistr/u16-move
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2517 func_module unistr/u32-move
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2518 func_module unistr/u8-next
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2519 func_module unistr/u16-next
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2520 func_module unistr/u32-next
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2521 func_module unistr/u8-prev
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2522 func_module unistr/u16-prev
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2523 func_module unistr/u32-prev
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2524 func_module unistr/u8-set
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2525 func_module unistr/u16-set
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2526 func_module unistr/u32-set
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2527 func_module unistr/u8-startswith
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2528 func_module unistr/u16-startswith
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2529 func_module unistr/u32-startswith
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2530 func_module unistr/u8-stpcpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2531 func_module unistr/u16-stpcpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2532 func_module unistr/u32-stpcpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2533 func_module unistr/u8-stpncpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2534 func_module unistr/u16-stpncpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2535 func_module unistr/u32-stpncpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2536 func_module unistr/u8-strcat
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2537 func_module unistr/u16-strcat
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2538 func_module unistr/u32-strcat
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2539 func_module unistr/u8-strchr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2540 func_module unistr/u16-strchr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2541 func_module unistr/u32-strchr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2542 func_module unistr/u8-strcmp
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2543 func_module unistr/u16-strcmp
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2544 func_module unistr/u32-strcmp
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2545 func_module unistr/u8-strcpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2546 func_module unistr/u16-strcpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2547 func_module unistr/u32-strcpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2548 func_module unistr/u8-strcspn
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2549 func_module unistr/u16-strcspn
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2550 func_module unistr/u32-strcspn
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2551 func_module unistr/u8-strdup
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2552 func_module unistr/u16-strdup
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2553 func_module unistr/u32-strdup
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2554 func_module unistr/u8-strlen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2555 func_module unistr/u16-strlen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2556 func_module unistr/u32-strlen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2557 func_module unistr/u8-strmblen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2558 func_module unistr/u16-strmblen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2559 func_module unistr/u32-strmblen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2560 func_module unistr/u8-strmbtouc
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2561 func_module unistr/u16-strmbtouc
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2562 func_module unistr/u32-strmbtouc
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2563 func_module unistr/u8-strncat
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2564 func_module unistr/u16-strncat
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2565 func_module unistr/u32-strncat
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2566 func_module unistr/u8-strncmp
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2567 func_module unistr/u16-strncmp
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2568 func_module unistr/u32-strncmp
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2569 func_module unistr/u8-strncpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2570 func_module unistr/u16-strncpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2571 func_module unistr/u32-strncpy
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2572 func_module unistr/u8-strnlen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2573 func_module unistr/u16-strnlen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2574 func_module unistr/u32-strnlen
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2575 func_module unistr/u8-strpbrk
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2576 func_module unistr/u16-strpbrk
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2577 func_module unistr/u32-strpbrk
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2578 func_module unistr/u8-strrchr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2579 func_module unistr/u16-strrchr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2580 func_module unistr/u32-strrchr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2581 func_module unistr/u8-strspn
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2582 func_module unistr/u16-strspn
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2583 func_module unistr/u32-strspn
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2584 func_module unistr/u8-strstr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2585 func_module unistr/u16-strstr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2586 func_module unistr/u32-strstr
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2587 func_module unistr/u8-strtok
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2588 func_module unistr/u16-strtok
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2589 func_module unistr/u32-strtok
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2590 func_module unistr/u8-uctomb
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2591 func_module unistr/u16-uctomb
fbbf0edfe4a3 New unistr/* modules.
Bruno Haible <bruno@clisp.org>
parents: 7804
diff changeset
2592 func_module unistr/u32-uctomb
7973
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2593 func_module uniconv/base
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2594 func_module uniconv/u8-conv-from-enc
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2595 func_module uniconv/u16-conv-from-enc
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2596 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
2597 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
2598 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
2599 func_module uniconv/u32-conv-to-enc
7973
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2600 func_module uniconv/u8-strconv-from-enc
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2601 func_module uniconv/u16-strconv-from-enc
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2602 func_module uniconv/u32-strconv-from-enc
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2603 func_module uniconv/u8-strconv-to-enc
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2604 func_module uniconv/u16-strconv-to-enc
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2605 func_module uniconv/u32-strconv-to-enc
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2606 func_module uniconv/u8-strconv-from-locale
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2607 func_module uniconv/u16-strconv-from-locale
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2608 func_module uniconv/u32-strconv-from-locale
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2609 func_module uniconv/u8-strconv-to-locale
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2610 func_module uniconv/u16-strconv-to-locale
05d5f4887811 New modules uniconv/*.
Bruno Haible <bruno@clisp.org>
parents: 7935
diff changeset
2611 func_module uniconv/u32-strconv-to-locale
9030
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2612 func_module unistdio/base
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2613 func_module unistdio/u-printf-args
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2614 func_module unistdio/ulc-asnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2615 func_module unistdio/ulc-asprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2616 func_module unistdio/ulc-fprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2617 func_module unistdio/ulc-printf-parse
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2618 func_module unistdio/ulc-snprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2619 func_module unistdio/ulc-sprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2620 func_module unistdio/ulc-vasnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2621 func_module unistdio/ulc-vasprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2622 func_module unistdio/ulc-vfprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2623 func_module unistdio/ulc-vsnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2624 func_module unistdio/ulc-vsprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2625 func_module unistdio/u8-asnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2626 func_module unistdio/u8-asprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2627 func_module unistdio/u8-printf-parse
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2628 func_module unistdio/u8-snprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2629 func_module unistdio/u8-sprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2630 func_module unistdio/u8-vasnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2631 func_module unistdio/u8-vasprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2632 func_module unistdio/u8-vsnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2633 func_module unistdio/u8-vsprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2634 func_module unistdio/u8-u8-asnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2635 func_module unistdio/u8-u8-asprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2636 func_module unistdio/u8-u8-snprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2637 func_module unistdio/u8-u8-sprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2638 func_module unistdio/u8-u8-vasnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2639 func_module unistdio/u8-u8-vasprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2640 func_module unistdio/u8-u8-vsnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2641 func_module unistdio/u8-u8-vsprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2642 func_module unistdio/u16-asnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2643 func_module unistdio/u16-asprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2644 func_module unistdio/u16-printf-parse
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2645 func_module unistdio/u16-snprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2646 func_module unistdio/u16-sprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2647 func_module unistdio/u16-vasnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2648 func_module unistdio/u16-vasprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2649 func_module unistdio/u16-vsnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2650 func_module unistdio/u16-vsprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2651 func_module unistdio/u16-u16-asnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2652 func_module unistdio/u16-u16-asprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2653 func_module unistdio/u16-u16-snprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2654 func_module unistdio/u16-u16-sprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2655 func_module unistdio/u16-u16-vasnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2656 func_module unistdio/u16-u16-vasprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2657 func_module unistdio/u16-u16-vsnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2658 func_module unistdio/u16-u16-vsprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2659 func_module unistdio/u32-asnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2660 func_module unistdio/u32-asprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2661 func_module unistdio/u32-printf-parse
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2662 func_module unistdio/u32-snprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2663 func_module unistdio/u32-sprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2664 func_module unistdio/u32-vasnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2665 func_module unistdio/u32-vasprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2666 func_module unistdio/u32-vsnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2667 func_module unistdio/u32-vsprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2668 func_module unistdio/u32-u32-asnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2669 func_module unistdio/u32-u32-asprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2670 func_module unistdio/u32-u32-snprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2671 func_module unistdio/u32-u32-sprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2672 func_module unistdio/u32-u32-vasnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2673 func_module unistdio/u32-u32-vasprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2674 func_module unistdio/u32-u32-vsnprintf
870029929d86 Formatted output functions for Unicode strings.
Bruno Haible <bruno@clisp.org>
parents: 9013
diff changeset
2675 func_module unistdio/u32-u32-vsprintf
9053
1d22b1ee9970 New modules uniname/base and uniname/uniname.
Bruno Haible <bruno@clisp.org>
parents: 9042
diff changeset
2676 func_module uniname/base
1d22b1ee9970 New modules uniname/base and uniname/uniname.
Bruno Haible <bruno@clisp.org>
parents: 9042
diff changeset
2677 func_module uniname/uniname
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2678 func_module unictype/base
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2679 func_module unictype/bidicategory-byname
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2680 func_module unictype/bidicategory-name
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2681 func_module unictype/bidicategory-of
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2682 func_module unictype/bidicategory-test
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2683 func_module unictype/bidicategory-all
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2684 func_module unictype/block-list
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2685 func_module unictype/block-of
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2686 func_module unictype/block-test
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2687 func_module unictype/block-all
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2688 func_module unictype/category-C
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2689 func_module unictype/category-Cc
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2690 func_module unictype/category-Cf
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2691 func_module unictype/category-Cn
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2692 func_module unictype/category-Co
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2693 func_module unictype/category-Cs
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2694 func_module unictype/category-L
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2695 func_module unictype/category-Ll
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2696 func_module unictype/category-Lm
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2697 func_module unictype/category-Lo
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2698 func_module unictype/category-Lt
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2699 func_module unictype/category-Lu
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2700 func_module unictype/category-M
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2701 func_module unictype/category-Mc
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2702 func_module unictype/category-Me
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2703 func_module unictype/category-Mn
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2704 func_module unictype/category-N
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2705 func_module unictype/category-Nd
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2706 func_module unictype/category-Nl
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2707 func_module unictype/category-No
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2708 func_module unictype/category-P
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2709 func_module unictype/category-Pc
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2710 func_module unictype/category-Pd
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2711 func_module unictype/category-Pe
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2712 func_module unictype/category-Pf
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2713 func_module unictype/category-Pi
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2714 func_module unictype/category-Po
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2715 func_module unictype/category-Ps
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2716 func_module unictype/category-S
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2717 func_module unictype/category-Sc
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2718 func_module unictype/category-Sk
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2719 func_module unictype/category-Sm
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2720 func_module unictype/category-So
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2721 func_module unictype/category-Z
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2722 func_module unictype/category-Zl
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2723 func_module unictype/category-Zp
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2724 func_module unictype/category-Zs
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2725 func_module unictype/category-and
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2726 func_module unictype/category-and-not
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2727 func_module unictype/category-byname
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2728 func_module unictype/category-name
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2729 func_module unictype/category-none
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2730 func_module unictype/category-of
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2731 func_module unictype/category-or
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2732 func_module unictype/category-test
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2733 func_module unictype/category-test-withtable
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2734 func_module unictype/category-all
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2735 func_module unictype/combining-class
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2736 func_module unictype/ctype-alnum
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2737 func_module unictype/ctype-alpha
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2738 func_module unictype/ctype-blank
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2739 func_module unictype/ctype-cntrl
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2740 func_module unictype/ctype-digit
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2741 func_module unictype/ctype-graph
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2742 func_module unictype/ctype-lower
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2743 func_module unictype/ctype-print
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2744 func_module unictype/ctype-punct
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2745 func_module unictype/ctype-space
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2746 func_module unictype/ctype-upper
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2747 func_module unictype/ctype-xdigit
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2748 func_module unictype/decimal-digit
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2749 func_module unictype/digit
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2750 func_module unictype/mirror
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2751 func_module unictype/numeric
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2752 func_module unictype/property-alphabetic
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2753 func_module unictype/property-ascii-hex-digit
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2754 func_module unictype/property-bidi-arabic-digit
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2755 func_module unictype/property-bidi-arabic-right-to-left
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2756 func_module unictype/property-bidi-block-separator
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2757 func_module unictype/property-bidi-boundary-neutral
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2758 func_module unictype/property-bidi-common-separator
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2759 func_module unictype/property-bidi-control
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2760 func_module unictype/property-bidi-embedding-or-override
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2761 func_module unictype/property-bidi-eur-num-separator
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2762 func_module unictype/property-bidi-eur-num-terminator
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2763 func_module unictype/property-bidi-european-digit
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2764 func_module unictype/property-bidi-hebrew-right-to-left
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2765 func_module unictype/property-bidi-left-to-right
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2766 func_module unictype/property-bidi-non-spacing-mark
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2767 func_module unictype/property-bidi-other-neutral
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2768 func_module unictype/property-bidi-pdf
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2769 func_module unictype/property-bidi-segment-separator
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2770 func_module unictype/property-bidi-whitespace
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2771 func_module unictype/property-byname
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2772 func_module unictype/property-combining
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2773 func_module unictype/property-composite
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2774 func_module unictype/property-currency-symbol
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2775 func_module unictype/property-dash
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2776 func_module unictype/property-decimal-digit
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2777 func_module unictype/property-default-ignorable-code-point
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2778 func_module unictype/property-deprecated
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2779 func_module unictype/property-diacritic
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2780 func_module unictype/property-extender
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2781 func_module unictype/property-format-control
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2782 func_module unictype/property-grapheme-base
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2783 func_module unictype/property-grapheme-extend
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2784 func_module unictype/property-grapheme-link
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2785 func_module unictype/property-hex-digit
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2786 func_module unictype/property-hyphen
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2787 func_module unictype/property-id-continue
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2788 func_module unictype/property-id-start
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2789 func_module unictype/property-ideographic
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2790 func_module unictype/property-ids-binary-operator
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2791 func_module unictype/property-ids-trinary-operator
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2792 func_module unictype/property-ignorable-control
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2793 func_module unictype/property-iso-control
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2794 func_module unictype/property-join-control
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2795 func_module unictype/property-left-of-pair
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2796 func_module unictype/property-line-separator
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2797 func_module unictype/property-logical-order-exception
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2798 func_module unictype/property-lowercase
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2799 func_module unictype/property-math
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2800 func_module unictype/property-non-break
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2801 func_module unictype/property-not-a-character
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2802 func_module unictype/property-numeric
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2803 func_module unictype/property-other-alphabetic
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2804 func_module unictype/property-other-default-ignorable-code-point
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2805 func_module unictype/property-other-grapheme-extend
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2806 func_module unictype/property-other-id-continue
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2807 func_module unictype/property-other-id-start
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2808 func_module unictype/property-other-lowercase
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2809 func_module unictype/property-other-math
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2810 func_module unictype/property-other-uppercase
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2811 func_module unictype/property-paired-punctuation
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2812 func_module unictype/property-paragraph-separator
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2813 func_module unictype/property-pattern-syntax
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2814 func_module unictype/property-pattern-white-space
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2815 func_module unictype/property-private-use
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2816 func_module unictype/property-punctuation
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2817 func_module unictype/property-quotation-mark
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2818 func_module unictype/property-radical
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2819 func_module unictype/property-sentence-terminal
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2820 func_module unictype/property-soft-dotted
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2821 func_module unictype/property-space
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2822 func_module unictype/property-terminal-punctuation
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2823 func_module unictype/property-test
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2824 func_module unictype/property-titlecase
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2825 func_module unictype/property-unassigned-code-value
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2826 func_module unictype/property-unified-ideograph
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2827 func_module unictype/property-uppercase
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2828 func_module unictype/property-variation-selector
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2829 func_module unictype/property-white-space
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2830 func_module unictype/property-xid-continue
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2831 func_module unictype/property-xid-start
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2832 func_module unictype/property-zero-width
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2833 func_module unictype/property-all
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2834 func_module unictype/scripts
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2835 func_module unictype/scripts-all
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2836 func_module unictype/syntax-c-ident
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2837 func_module unictype/syntax-c-whitespace
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2838 func_module unictype/syntax-java-ident
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2839 func_module unictype/syntax-java-whitespace
9070
1f5c82a3d787 Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents: 9053
diff changeset
2840 func_module uniwidth/base
1f5c82a3d787 Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents: 9053
diff changeset
2841 func_module uniwidth/u8-strwidth
1f5c82a3d787 Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents: 9053
diff changeset
2842 func_module uniwidth/u8-width
1f5c82a3d787 Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents: 9053
diff changeset
2843 func_module uniwidth/u16-strwidth
1f5c82a3d787 Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents: 9053
diff changeset
2844 func_module uniwidth/u16-width
1f5c82a3d787 Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents: 9053
diff changeset
2845 func_module uniwidth/u32-strwidth
1f5c82a3d787 Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents: 9053
diff changeset
2846 func_module uniwidth/u32-width
1f5c82a3d787 Add the uniwidth/* modules.
Bruno Haible <bruno@clisp.org>
parents: 9053
diff changeset
2847 func_module uniwidth/width
10080
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2848 func_module unilbrk/base
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2849 func_module unilbrk/tables
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2850 func_module unilbrk/ulc-common
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2851 func_module unilbrk/u8-possible-linebreaks
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2852 func_module unilbrk/u16-possible-linebreaks
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2853 func_module unilbrk/u32-possible-linebreaks
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2854 func_module unilbrk/ulc-possible-linebreaks
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2855 func_module unilbrk/u8-width-linebreaks
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2856 func_module unilbrk/u16-width-linebreaks
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2857 func_module unilbrk/u32-width-linebreaks
d0e8add2a62d Update after linebreak module was split.
Bruno Haible <bruno@clisp.org>
parents: 10068
diff changeset
2858 func_module unilbrk/ulc-width-linebreaks
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2859 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2860
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2861 element="Executing programs"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2862 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
2863 func_section_wrap posix_ext_exec
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2864 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2865 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2866
4294
f292c9f75051 New module 'findprog'.
Bruno Haible <bruno@clisp.org>
parents: 4286
diff changeset
2867 func_begin_table
5004
0d750c5a291b (func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents: 4940
diff changeset
2868 func_module cloexec
4294
f292c9f75051 New module 'findprog'.
Bruno Haible <bruno@clisp.org>
parents: 4286
diff changeset
2869 func_module findprog
4802
16d77b789c30 New module 'wait-process'.
Bruno Haible <bruno@clisp.org>
parents: 4772
diff changeset
2870 func_module wait-process
4936
0fb731aa9b43 New module 'execute'.
Bruno Haible <bruno@clisp.org>
parents: 4926
diff changeset
2871 func_module execute
4940
f3ef51adfb09 New module 'pipe'.
Bruno Haible <bruno@clisp.org>
parents: 4936
diff changeset
2872 func_module pipe
5598
09d49a2e321b New module 'sh-quote'.
Bruno Haible <bruno@clisp.org>
parents: 5498
diff changeset
2873 func_module sh-quote
4294
f292c9f75051 New module 'findprog'.
Bruno Haible <bruno@clisp.org>
parents: 4286
diff changeset
2874 func_end_table
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2875
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2876 element="Java"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2877 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
2878 func_section_wrap posix_ext_java
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2879 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2880 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2881
5608
32021ae605cc New module 'classpath'.
Bruno Haible <bruno@clisp.org>
parents: 5606
diff changeset
2882 func_begin_table
32021ae605cc New module 'classpath'.
Bruno Haible <bruno@clisp.org>
parents: 5606
diff changeset
2883 func_module classpath
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2884 func_module javacomp-script
5628
0ceadee93518 New module 'javacomp'.
Bruno Haible <bruno@clisp.org>
parents: 5627
diff changeset
2885 func_module javacomp
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2886 func_module javaexec-script
5627
bce611b24363 New module 'javaexec'.
Bruno Haible <bruno@clisp.org>
parents: 5608
diff changeset
2887 func_module javaexec
7018
096754ee89e4 New module 'javaversion'.
Bruno Haible <bruno@clisp.org>
parents: 7000
diff changeset
2888 func_module javaversion
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2889 #func_module gcj
5608
32021ae605cc New module 'classpath'.
Bruno Haible <bruno@clisp.org>
parents: 5606
diff changeset
2890 func_end_table
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2891
5902
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2892 element="C#"
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2893 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2894 func_section_wrap posix_ext_csharp
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2895 func_wrap H3
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2896 func_echo "$element"
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2897
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2898 func_begin_table
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2899 func_module csharpcomp-script
5913
3b9706263c44 New module 'csharpcomp'.
Bruno Haible <bruno@clisp.org>
parents: 5907
diff changeset
2900 func_module csharpcomp
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2901 func_module csharpexec-script
5902
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2902 func_module csharpexec
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2903 func_end_table
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2904
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2905 element="Misc"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2906 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
2907 func_section_wrap posix_ext_misc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2908 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2909 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2910
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2911 func_begin_table
4388
889d35a53bf1 New modules strchrnul, argp.
Bruno Haible <bruno@clisp.org>
parents: 4294
diff changeset
2912 func_module argp
5092
524f03b4532e Add argz module, which is autoupdated from libtool.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5090
diff changeset
2913 func_module argz
10373
4c522dd8fa80 Add bitrotate module.
Simon Josefsson <simon@josefsson.org>
parents: 10370
diff changeset
2914 func_module bitrotate
5810
eb19e0aa691a New byteswap module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5682
diff changeset
2915 func_module byteswap
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2916 func_module exitfail
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2917 func_module error
4515
ae4b157d42ad New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents: 4513
diff changeset
2918 func_module extensions
4733
dbe204edd79d New modules 'getdomainname', 'xgetdomainname'.
Bruno Haible <bruno@clisp.org>
parents: 4715
diff changeset
2919 func_module getdomainname
dbe204edd79d New modules 'getdomainname', 'xgetdomainname'.
Bruno Haible <bruno@clisp.org>
parents: 4715
diff changeset
2920 func_module xgetdomainname
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2921 func_module getloadavg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2922 func_module getpagesize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2923 func_module getusershell
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2924 func_module physmem
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2925 func_module posixver
4603
fae2e3155b7a New module 'progname'.
Bruno Haible <bruno@clisp.org>
parents: 4587
diff changeset
2926 func_module progname
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2927 func_module quotearg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2928 func_module quote
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2929 func_module readutmp
4392
c3f755572af2 New module 'sysexits'.
Bruno Haible <bruno@clisp.org>
parents: 4388
diff changeset
2930 func_module sysexits
7093
be990034280e * modules/verror: New module.
Eric Blake <ebb9@byu.net>
parents: 7046
diff changeset
2931 func_module verror
6002
29720e2b877f New gnulib module 'visibility'.
Bruno Haible <bruno@clisp.org>
parents: 5994
diff changeset
2932 func_module visibility
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2933 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
2934
606d04c5f604 * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6492
diff changeset
2935 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
2936 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
2937 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
2938 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
2939
606d04c5f604 * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6492
diff changeset
2940 func_begin_table
7754
ed8105720327 * modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents: 7738
diff changeset
2941 func_module absolute-header
7199
85ef7b18536b New config-h module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents: 7198
diff changeset
2942 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
2943 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
2944 func_module dummy
7196
c49e5940a04f * MODULES.html.sh (Support for building libraries and executables):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7194
diff changeset
2945 func_module elisp-comp
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2946 func_module gperf
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2947 func_module havelib
8996
249583771c09 * MODULES.html.sh: Add include_next.
Paul Eggert <eggert@cs.ucla.edu>
parents: 8986
diff changeset
2948 func_module include_next
6555
ed2b5c29e4cb New module 'ldd'.
Bruno Haible <bruno@clisp.org>
parents: 6529
diff changeset
2949 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
2950 func_module lib-ignore
8166
841795ba6446 New module 'link-warning'.
Bruno Haible <bruno@clisp.org>
parents: 8162
diff changeset
2951 func_module link-warning
7736
8e5aece0be22 New module 'no-c++'.
Bruno Haible <bruno@clisp.org>
parents: 7733
diff changeset
2952 func_module no-c++
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2953 func_module relocatable-lib
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2954 func_module relocatable-lib-lgpl
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2955 func_module relocatable-prog
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2956 func_module relocatable-prog-wrapper
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2957 func_module relocatable-script
6529
606d04c5f604 * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6492
diff changeset
2958 func_end_table
6952
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2959
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2960 element="Support for building documentation"
7000
d6a8f3b8565f * modules/stdlib-safer: New file.
Eric Blake <ebb9@byu.net>
parents: 6996
diff changeset
2961 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
2962 func_wrap H2
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2963 func_echo "$element"
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2964
6996
a0ccff1f7d50 Fix HTML syntax.
Bruno Haible <bruno@clisp.org>
parents: 6985
diff changeset
2965 func_begin_table
6952
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2966 func_module fdl
6958
1cfa258b139c * MODULES.html.sh: Add gendocs.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
2967 func_module gendocs
9042
ed4a80971dcd also rename gpl/lgpl modules here
Karl Berry <karl@freefriends.org>
parents: 9030
diff changeset
2968 func_module gpl-2.0
ed4a80971dcd also rename gpl/lgpl modules here
Karl Berry <karl@freefriends.org>
parents: 9030
diff changeset
2969 func_module gpl-3.0
ed4a80971dcd also rename gpl/lgpl modules here
Karl Berry <karl@freefriends.org>
parents: 9030
diff changeset
2970 func_module lgpl-2.1
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
2971 func_module agpl-3.0
7184
5b9dbce7a3b6 * modules/regexprops-generic: New file.
Eric Blake <ebb9@byu.net>
parents: 7178
diff changeset
2972 func_module regexprops-generic
6952
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2973 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
2974
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2975 element="Support for maintaining and releasing projects"
7178
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2976 func_section_wrap maintain
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2977 func_wrap H2
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2978 func_echo "$element"
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2979
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2980 func_begin_table
8598
7e4515fca532 Classify a few new modules.
Bruno Haible <bruno@clisp.org>
parents: 8504
diff changeset
2981 func_module announce-gen
8670
2da41f6a3853 2007-04-12 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8657
diff changeset
2982 func_module autobuild
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
2983 func_module git-version-gen
9680
8df33869766a New script and module: gitlog-to-changelog
Jim Meyering <meyering@redhat.com>
parents: 9661
diff changeset
2984 func_module gitlog-to-changelog
9811
5f79eb63c21e Alter GNUmakefile to install into top directory.
Eric Blake <ebb9@byu.net>
parents: 9799
diff changeset
2985 func_module gnumakefile
7178
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2986 func_module gnupload
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2987 func_module maintainer-makefile
9799
55aec4615f6d New script and module: mktempd
Jim Meyering <meyering@redhat.com>
parents: 9742
diff changeset
2988 func_module mktempd
9684
cacb7a47b649 New script and module: useless-if-before-free
Jim Meyering <meyering@redhat.com>
parents: 9680
diff changeset
2989 func_module useless-if-before-free
9661
7af2e7ef9554 vc-list-files: new module
Jim Meyering <meyering@redhat.com>
parents: 9646
diff changeset
2990 func_module vc-list-files
7178
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2991 func_end_table
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2992
7162
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2993 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
2994 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
2995 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
2996 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
2997
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2998 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
2999 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
3000 func_module host-os
10057
d7eac92e9acd Update modules list.
Bruno Haible <bruno@clisp.org>
parents: 10005
diff changeset
3001 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
3002 func_module perl
9478
c96110318f14 New module posix-shell, for determining a POSIX shell
Paul Eggert <eggert@cs.ucla.edu>
parents: 9477
diff changeset
3003 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
3004 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
3005 func_end_table
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
3006 }
7678
1757949a7c72 * MODULES.html.sh (File system functions): Add openat.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7656
diff changeset
3007
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
3008
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3009 func_tmpdir
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3010 trap 'exit_status=$?
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3011 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
3012 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
3013 fi
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3014 rm -rf "$tmp"
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3015 exit $exit_status' 0
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3016 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
3017 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
3018 done
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3019 signal=0
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3020
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3021 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3022 func_begin HTML
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3023
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3024 func_begin HEAD
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3025
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3026 element="Gnulib Module List"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3027 func_wrap TITLE
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3028 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3029
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3030 modules=`gnulib-tool --list`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3031 modules=`for m in $modules; do printf "%s, " $m; done | sed -e 's/, $//'`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3032 func_echo '<META NAME="keywords" CONTENT="'"${modules}"'">'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3033
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3034 func_end HEAD
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3035
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3036 func_begin BODY
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3037
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3038 element="Gnulib Module List"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3039 func_wrap H1
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3040 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3041
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3042 func_echo 'This is a list of the modules which make up gnulib, with dependencies.'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3043
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
3044 in_toc=yes
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
3045 func_all_modules
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3046
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
3047 in_toc=
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
3048 func_all_modules
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3049
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3050
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3051 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
3052 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
3053 | 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
3054 | 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
3055
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3056 if test -n "$missed_modules"; then
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3057
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3058 element="Unclassified modules - please update MODULES.html.sh"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3059 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3060 func_wrap H2
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3061 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3062
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3063 func_begin_table
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3064 for module in $missed_modules; do
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3065 func_module $module
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3066 done
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3067 func_end_table
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3068
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3069 fi
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3070
9319
d6c555bc447f Mention many new modules in the right categories.
Bruno Haible <bruno@clisp.org>
parents: 9309
diff changeset
3071 { find lib -type f -print; find m4 -type f -print; } | LC_ALL=C sort | sed -e '/\/\./d' -e /CVS/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
3072 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
3073 | 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
3074 | 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
3075
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3076 if test -n "$missed_files"; then
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3077
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3078 element="Lone files - please create new modules containing them"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3079 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3080 func_wrap H2
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3081 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3082
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3083 func_echo '<PRE>'
7849
d750c916cbf5 Accept options --cvs-urls, --git-urls.
Bruno Haible <bruno@clisp.org>
parents: 7848
diff changeset
3084 echo "$missed_files" | sed -e 's,^\(.*\)$,<A HREF="'$repo_url_prefix'\1'$repo_url_suffix_repl'">\1</A>,'
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3085 echo '</PRE>'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3086
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3087 fi
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3088
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3089 element="Future developments"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3090 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3091 func_wrap H2
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3092 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3093
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3094 func_echo 'Ideally a module could consist of:'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3095 func_begin UL
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3096 func_echo '<LI>A header file: lib/<VAR>module</VAR>.h'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3097 func_echo '<LI>One or more implementation files: lib/<VAR>module</VAR>.c et al.'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3098 func_echo '<LI>One or more autoconf macro files: m4/<VAR>module</VAR>.m4 et al.'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3099 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
3100 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
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3101 func_echo '<LI>Some documentation'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3102 func_echo '<LI>A POT file and some PO files'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3103 func_end UL
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3104
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3105 func_echo '<HR>'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3106 func_echo 'Generated from <CODE>MODULES.html.sh</CODE> on '`LC_ALL=C date +"%e %B %Y"`.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3107
4457
0bb648a6b915 Fix an HTML bug.
Bruno Haible <bruno@clisp.org>
parents: 4456
diff changeset
3108 func_end BODY
0bb648a6b915 Fix an HTML bug.
Bruno Haible <bruno@clisp.org>
parents: 4456
diff changeset
3109
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3110 func_end HTML
7656
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3111
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3112 rm -rf "$tmp"
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3113 # 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
3114 trap '' 0
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3115 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
3116
50308a13df4d * MODULES.html.sh (seen_modules, seen_files): New variables.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7610
diff changeset
3117 exit 0
7754
ed8105720327 * modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents: 7738
diff changeset
3118
ed8105720327 * modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents: 7738
diff changeset
3119 # Local Variables:
ed8105720327 * modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents: 7738
diff changeset
3120 # indent-tabs-mode: nil
ed8105720327 * modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents: 7738
diff changeset
3121 # whitespace-check-buffer-indent: nil
ed8105720327 * modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents: 7738
diff changeset
3122 # End: