annotate MODULES.html.sh @ 7557:d8606aab03d1

* MODULES.html.sh: Remove uinttostr. It's not a module. Reported by Karl Berry.
author Jim Meyering <jim@meyering.net>
date Tue, 24 Oct 2006 18:18:19 +0000
parents 8c6aad2a3515
children a2d76523d6bc
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 #
6529
606d04c5f604 * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6492
diff changeset
3 # Copyright (C) 2002-2006 Free Software Foundation, Inc.
4137
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
4 #
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
5 # This program is free software; you can redistribute it and/or modify
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
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
7 # the Free Software Foundation; either version 2, or (at your option)
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
8 # any later version.
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
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
16 # along with this program; if not, write to the Free Software
5848
a48fb0e98c8c *** empty log message ***
Paul Eggert <eggert@cs.ucla.edu>
parents: 5825
diff changeset
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
4137
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
18 #
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
19
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 # Usage: MODULES.html.sh > MODULES.html
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
22 # Extend the PATH so that gnulib-tool is found.
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
23 PATH=`dirname "$0"`:$PATH; export PATH
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
24
5979
5cc92ab8ce76 Use shortcut links to the POSIX specification.
Bruno Haible <bruno@clisp.org>
parents: 5965
diff changeset
25 POSIX2001_URL='http://www.opengroup.org/susv3'
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
26 case $USER in
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
27 bruno )
5979
5cc92ab8ce76 Use shortcut links to the POSIX specification.
Bruno Haible <bruno@clisp.org>
parents: 5965
diff changeset
28 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
29 esac
4148
ea41e6b422a8 include `dirname $0` in PATH, to find gnulib-tool.
Karl Berry <karl@freefriends.org>
parents: 4137
diff changeset
30
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 sed_lt='s,<,\&lt;,g'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 sed_gt='s,>,\&gt;,g'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 sed_escape_dot='s,\.,\\.,g'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34 sed_escape_slash='s,/,\\/,g'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 trnl='\012'
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
36 sed_alt1='s,$,\\|,'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
37 sed_alt2='s,^\\|,\\(,'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
38 sed_alt3='s,\\|\\|$,\\),'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
39 posix_headers=`echo '
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
40 aio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
41 arpa/inet
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
42 assert
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
43 complex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
44 cpio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
45 ctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
46 dirent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
47 dlfcn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
48 errno
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
49 fcntl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
50 fenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
51 float
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
52 fmtmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
53 fnmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
54 ftw
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
55 glob
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
56 grp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
57 iconv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
58 inttypes
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
59 iso646
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
60 langinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
61 libgen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
62 limits
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
63 locale
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
64 math
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
65 monetary
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
66 mqueue
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
67 ndbm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
68 net/if
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
69 netdb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
70 netinet/in
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
71 netinet/tcp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
72 nl_types
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
73 poll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
74 pthread
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
75 pwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
76 regex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
77 sched
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
78 search
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
79 semaphore
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
80 setjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
81 signal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
82 spawn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
83 stdarg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
84 stdbool
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
85 stddef
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
86 stdint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
87 stdio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
88 stdlib
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
89 string
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
90 strings
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
91 stropts
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
92 sys/ipc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
93 sys/mman
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
94 sys/msg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
95 sys/resource
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
96 sys/select
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
97 sys/sem
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
98 sys/shm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
99 sys/socket
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
100 sys/stat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
101 sys/statvfs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
102 sys/time
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
103 sys/timeb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
104 sys/times
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
105 sys/types
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
106 sys/uio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
107 sys/un
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
108 sys/utsname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
109 sys/wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
110 syslog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
111 tar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
112 termios
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
113 tgmath
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
114 time
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
115 trace
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
116 ucontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
117 ulimit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
118 unistd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
119 utime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
120 utmpx
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
121 wchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
122 wctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
123 wordexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
124 ' | 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
125 posix_functions=`echo '
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
126 FD_CLR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
127 FD_ISSET
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
128 FD_SET
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
129 FD_ZERO
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
130 _Exit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
131 _exit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
132 _longjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
133 _setjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
134 _tolower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
135 _toupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
136 a64l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
137 abort
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
138 abs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
139 accept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
140 access
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
141 acos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
142 acosf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
143 acosh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
144 acoshf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
145 acoshl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
146 acosl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
147 aio_cancel
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
148 aio_error
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
149 aio_fsync
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
150 aio_read
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
151 aio_return
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
152 aio_suspend
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
153 aio_write
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
154 alarm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
155 asctime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
156 asctime_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
157 asin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
158 asinf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
159 asinh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
160 asinhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
161 asinhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
162 asinl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
163 assert
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
164 atan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
165 atan2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
166 atan2f
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
167 atan2l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
168 atanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
169 atanh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
170 atanhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
171 atanhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
172 atanl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
173 atexit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
174 atof
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
175 atoi
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
176 atol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
177 atoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
178 basename
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
179 bcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
180 bcopy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
181 bind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
182 bsd_signal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
183 bsearch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
184 btowc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
185 bzero
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
186 cabs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
187 cabsf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
188 cabsl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
189 cacos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
190 cacosf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
191 cacosh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
192 cacoshf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
193 cacoshl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
194 cacosl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
195 calloc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
196 carg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
197 cargf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
198 cargl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
199 casin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
200 casinf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
201 casinh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
202 casinhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
203 casinhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
204 casinl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
205 catan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
206 catanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
207 catanh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
208 catanhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
209 catanhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
210 catanl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
211 catclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
212 catgets
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
213 catopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
214 cbrt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
215 cbrtf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
216 cbrtl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
217 ccos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
218 ccosf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
219 ccosh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
220 ccoshf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
221 ccoshl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
222 ccosl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
223 ceil
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
224 ceilf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
225 ceill
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
226 cexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
227 cexpf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
228 cexpl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
229 cfgetispeed
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
230 cfgetospeed
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
231 cfsetispeed
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
232 cfsetospeed
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
233 chdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
234 chmod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
235 chown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
236 cimag
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
237 cimagf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
238 cimagl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
239 clearerr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
240 clock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
241 clock_getcpuclockid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
242 clock_getres
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
243 clock_gettime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
244 clock_nanosleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
245 clock_settime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
246 clog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
247 clogf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
248 clogl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
249 close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
250 closedir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
251 closelog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
252 confstr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
253 conj
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
254 conjf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
255 conjl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
256 connect
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
257 contents
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
258 copysign
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
259 copysignf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
260 copysignl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
261 cos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
262 cosf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
263 cosh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
264 coshf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
265 coshl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
266 cosl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
267 cpow
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
268 cpowf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
269 cpowl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
270 cproj
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
271 cprojf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
272 cprojl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
273 creal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
274 crealf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
275 creall
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
276 creat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
277 crypt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
278 csin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
279 csinf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
280 csinh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
281 csinhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
282 csinhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
283 csinl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
284 csqrt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
285 csqrtf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
286 csqrtl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
287 ctan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
288 ctanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
289 ctanh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
290 ctanhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
291 ctanhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
292 ctanl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
293 ctermid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
294 ctime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
295 ctime_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
296 daylight
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
297 dbm_clearerr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
298 dbm_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
299 dbm_delete
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
300 dbm_error
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
301 dbm_fetch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
302 dbm_firstkey
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
303 dbm_nextkey
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
304 dbm_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
305 dbm_store
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
306 difftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
307 dirname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
308 div
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
309 dlclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
310 dlerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
311 dlopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
312 dlsym
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
313 drand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
314 dup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
315 dup2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
316 ecvt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
317 encrypt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
318 endgrent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
319 endhostent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
320 endnetent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
321 endprotoent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
322 endpwent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
323 endservent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
324 endutxent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
325 environ
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
326 erand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
327 erf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
328 erfc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
329 erfcf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
330 erfcl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
331 erff
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
332 erfl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
333 errno
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
334 exec
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
335 execl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
336 execle
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
337 execlp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
338 execv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
339 execve
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
340 execvp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
341 exit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
342 exp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
343 exp2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
344 exp2f
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
345 exp2l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
346 expf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
347 expl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
348 expm1
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
349 expm1f
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
350 expm1l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
351 fabs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
352 fabsf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
353 fabsl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
354 fattach
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
355 fchdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
356 fchmod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
357 fchown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
358 fclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
359 fcntl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
360 fcvt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
361 fdatasync
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
362 fdetach
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
363 fdim
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
364 fdimf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
365 fdiml
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
366 fdopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
367 feclearexcept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
368 fegetenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
369 fegetexceptflag
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
370 fegetround
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
371 feholdexcept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
372 feof
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
373 feraiseexcept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
374 ferror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
375 fesetenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
376 fesetexceptflag
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
377 fesetround
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
378 fetestexcept
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
379 feupdateenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
380 fflush
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
381 ffs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
382 fgetc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
383 fgetpos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
384 fgets
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
385 fgetwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
386 fgetws
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
387 fileno
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
388 flockfile
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
389 floor
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
390 floorf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
391 floorl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
392 fma
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
393 fmaf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
394 fmal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
395 fmax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
396 fmaxf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
397 fmaxl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
398 fmin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
399 fminf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
400 fminl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
401 fmod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
402 fmodf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
403 fmodl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
404 fmtmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
405 fnmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
406 fopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
407 fork
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
408 fpathconf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
409 fpclassify
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
410 fprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
411 fputc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
412 fputs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
413 fputwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
414 fputws
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
415 fread
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
416 free
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
417 freeaddrinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
418 freopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
419 frexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
420 frexpf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
421 frexpl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
422 fscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
423 fseek
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
424 fseeko
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
425 fsetpos
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
426 fstat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
427 fstatvfs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
428 fsync
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
429 ftell
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
430 ftello
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
431 ftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
432 ftok
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
433 ftruncate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
434 ftrylockfile
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
435 ftw
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
436 funlockfile
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
437 fwide
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
438 fwprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
439 fwrite
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
440 fwscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
441 gai_strerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
442 gcvt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
443 getaddrinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
444 getc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
445 getc_unlocked
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
446 getchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
447 getchar_unlocked
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
448 getcontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
449 getcwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
450 getdate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
451 getegid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
452 getenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
453 geteuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
454 getgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
455 getgrent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
456 getgrgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
457 getgrgid_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
458 getgrnam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
459 getgrnam_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
460 getgroups
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
461 gethostbyaddr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
462 gethostbyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
463 gethostent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
464 gethostid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
465 gethostname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
466 getitimer
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
467 getlogin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
468 getlogin_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
469 getmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
470 getnameinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
471 getnetbyaddr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
472 getnetbyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
473 getnetent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
474 getopt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
475 getpeername
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
476 getpgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
477 getpgrp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
478 getpid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
479 getpmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
480 getppid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
481 getpriority
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
482 getprotobyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
483 getprotobynumber
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
484 getprotoent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
485 getpwent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
486 getpwnam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
487 getpwnam_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
488 getpwuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
489 getpwuid_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
490 getrlimit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
491 getrusage
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
492 gets
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
493 getservbyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
494 getservbyport
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
495 getservent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
496 getsid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
497 getsockname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
498 getsockopt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
499 getsubopt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
500 gettimeofday
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
501 getuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
502 getutxent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
503 getutxid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
504 getutxline
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
505 getwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
506 getwchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
507 getwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
508 glob
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
509 globfree
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
510 gmtime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
511 gmtime_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
512 grantpt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
513 h_errno
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
514 hcreate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
515 hdestroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
516 hsearch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
517 htonl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
518 htons
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
519 hypot
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
520 hypotf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
521 hypotl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
522 iconv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
523 iconv_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
524 iconv_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
525 if_freenameindex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
526 if_indextoname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
527 if_nameindex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
528 if_nametoindex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
529 ilogb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
530 ilogbf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
531 ilogbl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
532 imaxabs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
533 imaxdiv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
534 index
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
535 inet_addr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
536 inet_ntoa
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
537 inet_ntop
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
538 inet_pton
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
539 initstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
540 insque
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
541 ioctl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
542 isalnum
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
543 isalpha
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
544 isascii
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
545 isastream
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
546 isatty
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
547 isblank
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
548 iscntrl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
549 isdigit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
550 isfinite
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
551 isgraph
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
552 isgreater
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
553 isgreaterequal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
554 isinf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
555 isless
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
556 islessequal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
557 islessgreater
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
558 islower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
559 isnan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
560 isnormal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
561 isprint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
562 ispunct
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
563 isspace
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
564 isunordered
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
565 isupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
566 iswalnum
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
567 iswalpha
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
568 iswblank
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
569 iswcntrl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
570 iswctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
571 iswdigit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
572 iswgraph
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
573 iswlower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
574 iswprint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
575 iswpunct
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
576 iswspace
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
577 iswupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
578 iswxdigit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
579 isxdigit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
580 j0
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
581 j1
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
582 jn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
583 jrand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
584 kill
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
585 killpg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
586 l64a
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
587 labs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
588 lchown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
589 lcong48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
590 ldexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
591 ldexpf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
592 ldexpl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
593 ldiv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
594 lfind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
595 lgamma
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
596 lgammaf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
597 lgammal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
598 link
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
599 lio_listio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
600 listen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
601 llabs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
602 lldiv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
603 llrint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
604 llrintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
605 llrintl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
606 llround
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
607 llroundf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
608 llroundl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
609 localeconv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
610 localtime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
611 localtime_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
612 lockf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
613 log
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
614 log10
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
615 log10f
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
616 log10l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
617 log1p
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
618 log1pf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
619 log1pl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
620 log2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
621 log2f
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
622 log2l
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
623 logb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
624 logbf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
625 logbl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
626 logf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
627 logl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
628 longjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
629 lrand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
630 lrint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
631 lrintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
632 lrintl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
633 lround
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
634 lroundf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
635 lroundl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
636 lsearch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
637 lseek
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
638 lstat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
639 makecontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
640 malloc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
641 mblen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
642 mbrlen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
643 mbrtowc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
644 mbsinit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
645 mbsrtowcs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
646 mbstowcs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
647 mbtowc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
648 memccpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
649 memchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
650 memcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
651 memcpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
652 memmove
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
653 memset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
654 mkdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
655 mkfifo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
656 mknod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
657 mkstemp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
658 mktemp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
659 mktime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
660 mlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
661 mlockall
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
662 mmap
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
663 modf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
664 modff
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
665 modfl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
666 mprotect
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
667 mq_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
668 mq_getattr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
669 mq_notify
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
670 mq_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
671 mq_receive
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
672 mq_send
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
673 mq_setattr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
674 mq_timedreceive
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
675 mq_timedsend
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
676 mq_unlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
677 mrand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
678 msgctl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
679 msgget
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
680 msgrcv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
681 msgsnd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
682 msync
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
683 munlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
684 munlockall
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
685 munmap
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
686 nan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
687 nanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
688 nanl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
689 nanosleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
690 nearbyint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
691 nearbyintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
692 nearbyintl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
693 nextafter
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
694 nextafterf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
695 nextafterl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
696 nexttoward
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
697 nexttowardf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
698 nexttowardl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
699 nftw
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
700 nice
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
701 nl_langinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
702 nrand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
703 ntohl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
704 ntohs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
705 open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
706 opendir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
707 openlog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
708 optarg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
709 pathconf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
710 pause
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
711 pclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
712 perror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
713 pipe
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
714 poll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
715 popen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
716 posix_fadvise
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
717 posix_fallocate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
718 posix_madvise
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
719 posix_mem_offset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
720 posix_memalign
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
721 posix_openpt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
722 posix_spawn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
723 posix_spawn_file_actions_addclose
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
724 posix_spawn_file_actions_adddup2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
725 posix_spawn_file_actions_addopen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
726 posix_spawn_file_actions_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
727 posix_spawn_file_actions_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
728 posix_spawnattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
729 posix_spawnattr_getflags
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
730 posix_spawnattr_getpgroup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
731 posix_spawnattr_getschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
732 posix_spawnattr_getschedpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
733 posix_spawnattr_getsigdefault
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
734 posix_spawnattr_getsigmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
735 posix_spawnattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
736 posix_spawnattr_setflags
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
737 posix_spawnattr_setpgroup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
738 posix_spawnattr_setschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
739 posix_spawnattr_setschedpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
740 posix_spawnattr_setsigdefault
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
741 posix_spawnattr_setsigmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
742 posix_spawnp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
743 posix_trace_attr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
744 posix_trace_attr_getclockres
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
745 posix_trace_attr_getcreatetime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
746 posix_trace_attr_getgenversion
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
747 posix_trace_attr_getinherited
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
748 posix_trace_attr_getlogfullpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
749 posix_trace_attr_getlogsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
750 posix_trace_attr_getmaxdatasize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
751 posix_trace_attr_getmaxsystemeventsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
752 posix_trace_attr_getmaxusereventsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
753 posix_trace_attr_getname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
754 posix_trace_attr_getstreamfullpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
755 posix_trace_attr_getstreamsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
756 posix_trace_attr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
757 posix_trace_attr_setinherited
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
758 posix_trace_attr_setlogfullpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
759 posix_trace_attr_setlogsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
760 posix_trace_attr_setmaxdatasize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
761 posix_trace_attr_setname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
762 posix_trace_attr_setstreamfullpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
763 posix_trace_attr_setstreamsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
764 posix_trace_clear
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
765 posix_trace_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
766 posix_trace_create
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
767 posix_trace_create_withlog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
768 posix_trace_event
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
769 posix_trace_eventid_equal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
770 posix_trace_eventid_get_name
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
771 posix_trace_eventid_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
772 posix_trace_eventset_add
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
773 posix_trace_eventset_del
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
774 posix_trace_eventset_empty
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
775 posix_trace_eventset_fill
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
776 posix_trace_eventset_ismember
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
777 posix_trace_eventtypelist_getnext_id
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
778 posix_trace_eventtypelist_rewind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
779 posix_trace_flush
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
780 posix_trace_get_attr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
781 posix_trace_get_filter
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
782 posix_trace_get_status
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
783 posix_trace_getnext_event
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
784 posix_trace_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
785 posix_trace_rewind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
786 posix_trace_set_filter
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
787 posix_trace_shutdown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
788 posix_trace_start
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
789 posix_trace_stop
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
790 posix_trace_timedgetnext_event
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
791 posix_trace_trid_eventid_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
792 posix_trace_trygetnext_event
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
793 posix_typed_mem_get_info
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
794 posix_typed_mem_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
795 pow
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
796 powf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
797 powl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
798 pread
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
799 printf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
800 pselect
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
801 pthread_atfork
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
802 pthread_attr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
803 pthread_attr_getdetachstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
804 pthread_attr_getguardsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
805 pthread_attr_getinheritsched
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
806 pthread_attr_getschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
807 pthread_attr_getschedpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
808 pthread_attr_getscope
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
809 pthread_attr_getstack
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
810 pthread_attr_getstackaddr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
811 pthread_attr_getstacksize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
812 pthread_attr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
813 pthread_attr_setdetachstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
814 pthread_attr_setguardsize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
815 pthread_attr_setinheritsched
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
816 pthread_attr_setschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
817 pthread_attr_setschedpolicy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
818 pthread_attr_setscope
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
819 pthread_attr_setstack
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
820 pthread_attr_setstackaddr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
821 pthread_attr_setstacksize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
822 pthread_barrier_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
823 pthread_barrier_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
824 pthread_barrier_wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
825 pthread_barrierattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
826 pthread_barrierattr_getpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
827 pthread_barrierattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
828 pthread_barrierattr_setpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
829 pthread_cancel
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
830 pthread_cleanup_pop
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
831 pthread_cleanup_push
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
832 pthread_cond_broadcast
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
833 pthread_cond_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
834 pthread_cond_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
835 pthread_cond_signal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
836 pthread_cond_timedwait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
837 pthread_cond_wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
838 pthread_condattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
839 pthread_condattr_getclock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
840 pthread_condattr_getpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
841 pthread_condattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
842 pthread_condattr_setclock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
843 pthread_condattr_setpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
844 pthread_create
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
845 pthread_detach
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
846 pthread_equal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
847 pthread_exit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
848 pthread_getconcurrency
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
849 pthread_getcpuclockid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
850 pthread_getschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
851 pthread_getspecific
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
852 pthread_join
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
853 pthread_key_create
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
854 pthread_key_delete
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
855 pthread_kill
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
856 pthread_mutex_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
857 pthread_mutex_getprioceiling
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
858 pthread_mutex_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
859 pthread_mutex_lock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
860 pthread_mutex_setprioceiling
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
861 pthread_mutex_timedlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
862 pthread_mutex_trylock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
863 pthread_mutex_unlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
864 pthread_mutexattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
865 pthread_mutexattr_getprioceiling
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
866 pthread_mutexattr_getprotocol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
867 pthread_mutexattr_getpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
868 pthread_mutexattr_gettype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
869 pthread_mutexattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
870 pthread_mutexattr_setprioceiling
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
871 pthread_mutexattr_setprotocol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
872 pthread_mutexattr_setpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
873 pthread_mutexattr_settype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
874 pthread_once
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
875 pthread_rwlock_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
876 pthread_rwlock_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
877 pthread_rwlock_rdlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
878 pthread_rwlock_timedrdlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
879 pthread_rwlock_timedwrlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
880 pthread_rwlock_tryrdlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
881 pthread_rwlock_trywrlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
882 pthread_rwlock_unlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
883 pthread_rwlock_wrlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
884 pthread_rwlockattr_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
885 pthread_rwlockattr_getpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
886 pthread_rwlockattr_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
887 pthread_rwlockattr_setpshared
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
888 pthread_self
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
889 pthread_setcancelstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
890 pthread_setcanceltype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
891 pthread_setconcurrency
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
892 pthread_setschedparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
893 pthread_setschedprio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
894 pthread_setspecific
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
895 pthread_sigmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
896 pthread_spin_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
897 pthread_spin_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
898 pthread_spin_lock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
899 pthread_spin_trylock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
900 pthread_spin_unlock
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
901 pthread_testcancel
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
902 ptsname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
903 putc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
904 putc_unlocked
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
905 putchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
906 putchar_unlocked
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
907 putenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
908 putmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
909 putpmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
910 puts
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
911 pututxline
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
912 putwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
913 putwchar
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
914 pwrite
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
915 qsort
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
916 raise
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
917 rand
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
918 rand_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
919 random
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
920 read
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
921 readdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
922 readdir_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
923 readlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
924 readv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
925 realloc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
926 realpath
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
927 recv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
928 recvfrom
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
929 recvmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
930 regcomp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
931 regerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
932 regexec
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
933 regfree
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
934 remainder
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
935 remainderf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
936 remainderl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
937 remove
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
938 remque
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
939 remquo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
940 remquof
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
941 remquol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
942 rename
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
943 rewind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
944 rewinddir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
945 rindex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
946 rint
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
947 rintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
948 rintl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
949 rmdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
950 round
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
951 roundf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
952 roundl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
953 scalb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
954 scalbln
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
955 scalblnf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
956 scalblnl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
957 scalbn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
958 scalbnf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
959 scalbnl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
960 scanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
961 sched_get_priority_max
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
962 sched_getparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
963 sched_getscheduler
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
964 sched_rr_get_interval
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
965 sched_setparam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
966 sched_setscheduler
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
967 sched_yield
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
968 seed48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
969 seekdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
970 select
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
971 sem_close
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
972 sem_destroy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
973 sem_getvalue
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
974 sem_init
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
975 sem_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
976 sem_post
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
977 sem_timedwait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
978 sem_trywait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
979 sem_unlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
980 sem_wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
981 semctl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
982 semget
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
983 semop
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
984 send
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
985 sendmsg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
986 sendto
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
987 setbuf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
988 setcontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
989 setegid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
990 setenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
991 seteuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
992 setgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
993 setgrent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
994 sethostent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
995 setitimer
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
996 setjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
997 setkey
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
998 setlocale
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
999 setlogmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1000 setnetent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1001 setpgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1002 setpgrp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1003 setpriority
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1004 setprotoent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1005 setpwent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1006 setregid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1007 setreuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1008 setrlimit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1009 setservent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1010 setsid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1011 setsockopt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1012 setstate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1013 setuid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1014 setutxent
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1015 setvbuf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1016 shm_open
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1017 shm_unlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1018 shmat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1019 shmctl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1020 shmdt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1021 shmget
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1022 shutdown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1023 sigaction
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1024 sigaddset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1025 sigaltstack
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1026 sigdelset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1027 sigemptyset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1028 sigfillset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1029 sighold
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1030 sigignore
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1031 siginterrupt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1032 sigismember
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1033 siglongjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1034 signal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1035 signbit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1036 sigpause
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1037 sigpending
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1038 sigprocmask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1039 sigqueue
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1040 sigrelse
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1041 sigset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1042 sigsetjmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1043 sigsuspend
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1044 sigtimedwait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1045 sigwait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1046 sigwaitinfo
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1047 sin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1048 sinf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1049 sinh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1050 sinhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1051 sinhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1052 sinl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1053 sleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1054 snprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1055 sockatmark
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1056 socket
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1057 socketpair
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1058 sprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1059 sqrt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1060 sqrtf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1061 sqrtl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1062 srand
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1063 srand48
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1064 srandom
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1065 sscanf
5979
5cc92ab8ce76 Use shortcut links to the POSIX specification.
Bruno Haible <bruno@clisp.org>
parents: 5965
diff changeset
1066 stat
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1067 statvfs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1068 stdin
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1069 strcasecmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1070 strcat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1071 strchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1072 strcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1073 strcoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1074 strcpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1075 strcspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1076 strdup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1077 strerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1078 strerror_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1079 strfmon
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1080 strftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1081 strlen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1082 strncasecmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1083 strncat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1084 strncmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1085 strncpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1086 strpbrk
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1087 strptime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1088 strrchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1089 strspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1090 strstr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1091 strtod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1092 strtof
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1093 strtoimax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1094 strtok
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1095 strtok_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1096 strtol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1097 strtold
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1098 strtoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1099 strtoul
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1100 strtoull
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1101 strtoumax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1102 strxfrm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1103 swab
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1104 swapcontext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1105 swprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1106 swscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1107 symlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1108 sync
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1109 sysconf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1110 syslog
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1111 system
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1112 tan
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1113 tanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1114 tanh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1115 tanhf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1116 tanhl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1117 tanl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1118 tcdrain
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1119 tcflow
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1120 tcflush
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1121 tcgetattr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1122 tcgetpgrp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1123 tcgetsid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1124 tcsendbreak
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1125 tcsetattr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1126 tcsetpgrp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1127 tdelete
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1128 telldir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1129 tempnam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1130 tfind
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1131 tgamma
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1132 tgammaf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1133 tgammal
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1134 time
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1135 timer_create
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1136 timer_delete
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1137 timer_getoverrun
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1138 timer_settime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1139 times
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1140 timezone
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1141 tmpfile
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1142 tmpnam
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1143 toascii
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1144 toc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1145 tolower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1146 toupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1147 towctrans
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1148 towlower
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1149 towupper
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1150 trunc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1151 truncate
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1152 truncf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1153 truncl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1154 tsearch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1155 ttyname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1156 ttyname_r
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1157 twalk
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1158 tzname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1159 tzset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1160 ualarm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1161 ulimit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1162 umask
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1163 uname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1164 ungetc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1165 ungetwc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1166 unlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1167 unlockpt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1168 unsetenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1169 usleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1170 utime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1171 utimes
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1172 va_arg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1173 va_copy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1174 va_end
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1175 va_start
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1176 vfork
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1177 vfprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1178 vfscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1179 vfwprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1180 vfwscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1181 vprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1182 vscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1183 vsnprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1184 vsprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1185 vsscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1186 vswprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1187 vswscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1188 vwprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1189 vwscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1190 wait
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1191 waitid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1192 waitpid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1193 wcrtomb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1194 wcscat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1195 wcschr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1196 wcscmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1197 wcscoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1198 wcscpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1199 wcscspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1200 wcsftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1201 wcslen
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1202 wcsncat
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1203 wcsncmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1204 wcsncpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1205 wcspbrk
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1206 wcsrchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1207 wcsrtombs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1208 wcsspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1209 wcsstr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1210 wcstod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1211 wcstof
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1212 wcstoimax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1213 wcstok
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1214 wcstol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1215 wcstold
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1216 wcstoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1217 wcstombs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1218 wcstoul
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1219 wcstoull
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1220 wcstoumax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1221 wcswcs
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1222 wcswidth
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1223 wcsxfrm
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1224 wctob
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1225 wctomb
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1226 wctrans
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1227 wctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1228 wcwidth
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1229 wmemchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1230 wmemcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1231 wmemcpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1232 wmemmove
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1233 wmemset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1234 wordexp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1235 wordfree
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1236 wprintf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1237 write
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1238 writev
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1239 wscanf
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1240 y0
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1241 y1
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1242 yn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1243 ' | 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
1244
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1245 indent=""
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1246 missed_modules=`gnulib-tool --list`
4150
60149b6a8a43 Ignore Emacs backup files.
Bruno Haible <bruno@clisp.org>
parents: 4148
diff changeset
1247 missed_files=`ls -d lib/* m4/* | sed -e /CVS/d -e /README/d -e /ChangeLog/d -e /Makefile/d -e /TODO/d -e '/~$/d'`
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1248
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1249 # func_echo line
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1250 # outputs line with indentation.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1251 func_echo ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1252 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1253 echo "${indent}$*"
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
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1256 # func_indent
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1257 # increases the indentation.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1258 func_indent ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1259 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1260 indent="$indent "
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1261 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1262
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1263 # func_unindent
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1264 # decreases the indentation.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1265 func_unindent ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1266 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1267 indent=`echo "$indent" | sed -e 's/ $//'`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1268 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1269
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1270 # func_begin tag [attribute...]
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1271 # opens a HTML tag.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1272 func_begin ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1273 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1274 func_echo "<$*>"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1275 func_indent
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1276 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1277
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1278 # func_end tag
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1279 # closes a HTML tag.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1280 func_end ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1281 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1282 func_unindent
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1283 func_echo "</$1>"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1284 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1285
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1286 # func_wrap tag [attribute...]
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1287 # encloses $element in a HTML tag, without line breaks.
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1288 func_wrap ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1289 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1290 element="<$*>${element}</$1>"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1291 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1292
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1293 # func_section_wrap sectiontag
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1294 # 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
1295 func_section_wrap ()
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1296 {
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1297 if test -n "$in_toc"; then
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1298 func_wrap A "HREF=\"#$1\""
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1299 else
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1300 func_wrap A "NAME=\"$1\""
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1301 fi
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1302 }
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1303
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1304 # func_begin_table
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1305 func_begin_table ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1306 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1307 func_begin TABLE
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1308 if test -z "$in_toc"; then
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1309 func_begin TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1310 func_echo "<TH ALIGN=LEFT>modules/"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1311 func_echo "<TH ALIGN=LEFT>lib/"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1312 func_echo "<TH ALIGN=LEFT>lib/"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1313 func_echo "<TH ALIGN=LEFT>m4/"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1314 func_echo "<TH ALIGN=LEFT>&nbsp;"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1315 func_end TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1316 func_begin TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1317 func_echo "<TH ALIGN=LEFT>Module"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1318 func_echo "<TH ALIGN=LEFT>Header"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1319 func_echo "<TH ALIGN=LEFT>Implementation"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1320 func_echo "<TH ALIGN=LEFT>Autoconf macro"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1321 func_echo "<TH ALIGN=LEFT>Depends on"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1322 func_end TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1323 fi
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1324 }
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 # func_module module
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1327 func_module ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1328 {
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1329 sed_remove_trailing_empty_line='${
4137
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
1330 /^$/d
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
1331 }'
723a376ddac5 MODULES.html replaces MODULES.txt.
Bruno Haible <bruno@clisp.org>
parents: 4113
diff changeset
1332
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1333 if test -n "$in_toc"; then
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1334
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1335 func_begin TR "WIDTH=\"100%\""
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1336
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1337 element='<A HREF="#module='$1'">'$1'</A>'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1338 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
1339
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1340 element=`gnulib-tool --extract-description $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1341 | sed -e "$sed_lt" -e "$sed_gt" -e "$sed_remove_trailing_empty_line" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1342 | sed -e 's,^, ,' \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1343 | sed -e 's,\([^a-zA-Z]\)'"${posix_functions}"'(),\1<A HREF="'"$POSIX2001_URL"'xsh/\2.html">\2</A>(),g' \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1344 | sed -e 's,^ ,,'`
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1345 func_echo "<TD ALIGN=LEFT VALIGN=TOP WIDTH=\"80%\">$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1346
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1347 func_end TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1348
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1349 else
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1350
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1351 func_begin TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1352
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1353 element='<A NAME="module='$1'"></A><A HREF="modules/'$1'">'$1'</A>'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1354 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1355
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1356 element=`gnulib-tool --extract-include-directive $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1357 | sed -e "$sed_lt" -e "$sed_gt" -e "$sed_remove_trailing_empty_line" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1358 | sed -e 's,^#include "\(.*\)"$,#include "<A HREF="lib/\1">\1</A>",' \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1359 -e 's,^#include &lt;'"${posix_headers}"'\.h&gt;$,#include \&lt;<A HREF="'"$POSIX2001_URL"'xbd/\1.h.html">\1.h</A>\&gt;,' \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1360 | 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
1361 test -n "$element" || element='---'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1362 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1363
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1364 sed_choose_unconditional_nonstandard_include='s,^#include "\(.*\)"$,\1,p'
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1365 includefile=`gnulib-tool --extract-include-directive $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1366 | sed -n -e "$sed_choose_unconditional_nonstandard_include" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1367 | sed -e "$sed_escape_dot" | tr -d "$trnl"`
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1368 sed_choose_lib_files='s,^lib/\(.*\)$,\1,p'
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1369 element=`gnulib-tool --extract-filelist $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1370 | sed -e '/^$/d' \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1371 | sed -n -e "$sed_choose_lib_files" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1372 | sed -e '/^'"${includefile}"'$/d' \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1373 | sed -e 's,^\(.*\)$,<A HREF="lib/\1">\1</A>,' \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1374 | 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
1375 test -n "$element" || element='---'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1376 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1377
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1378 sed_choose_m4_files='s,^m4/\(.*\)$,\1,p'
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1379 element=`(gnulib-tool --extract-filelist $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1380 | sed -e "$sed_remove_trailing_empty_line" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1381 | sed -n -e "$sed_choose_m4_files" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1382 | sed -e '/^onceonly/d' \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1383 | sed -e 's,^\(.*\)$,<A HREF="m4/\1">\1</A>,'; \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1384 gnulib-tool --extract-autoconf-snippet $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1385 | sed -e "$sed_remove_trailing_empty_line") \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1386 | 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
1387 test -n "$element" || element='---'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1388 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1389
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1390 element=`gnulib-tool --extract-dependencies $1 \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1391 | sed -e "$sed_remove_trailing_empty_line" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1392 | 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
1393 test -n "$element" || element='---'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1394 func_echo "<TD ALIGN=LEFT VALIGN=TOP>$element"
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1395
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1396 func_end TR
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1397
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1398 missed_modules=`echo "$missed_modules" | sed -e '/^'"$1"'$/d'`
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1399
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1400 files=`gnulib-tool --extract-filelist $1`
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1401 sed_removal_prefix='s,^,/^,'
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1402 sed_removal_suffix='s,$,\$/d,'
7325
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1403 sed_remove_files=`echo '{'; \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1404 for file in $files; do \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1405 echo $file \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1406 | sed -e "$sed_escape_dot" -e "$sed_escape_slash" \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1407 | sed -e "$sed_removal_prefix" -e "$sed_removal_suffix"; \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1408 done; \
4114613d997e Break long lines.
Bruno Haible <bruno@clisp.org>
parents: 7312
diff changeset
1409 echo '}'`
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1410 missed_files=`echo "$missed_files" | sed -e "$sed_remove_files"`
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1411
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1412 fi
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1413 }
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1414
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1415 # func_end_table
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1416 func_end_table ()
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1417 {
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1418 func_end TABLE
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1419 }
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_all_modules
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1422 func_all_modules ()
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1423 {
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1424 element="Support for systems lacking ANSI C 89"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1425 func_section_wrap ansic_sup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1426 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1427 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1428
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1429 func_begin_table
4201
bd8ff0653fc8 New module 'exit'.
Bruno Haible <bruno@clisp.org>
parents: 4198
diff changeset
1430 func_module exit
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1431 func_module atexit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1432 func_module strtod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1433 func_module strtol
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1434 func_module strtoul
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1435 func_module memchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1436 func_module memcmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1437 func_module memcpy
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1438 func_module memmove
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1439 func_module memset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1440 func_module strcspn
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1441 func_module strpbrk
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1442 func_module strstr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1443 func_module strerror
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1444 func_module mktime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1445 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1446
5886
775f86a9883a Slight change in wording about C89 support modules.
Bruno Haible <bruno@clisp.org>
parents: 5872
diff changeset
1447 func_echo 'Most of these modules are not listed among dependencies below, for simplicity.'
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1448
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1449 element="Enhancements for ANSI C 89 functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1450 func_section_wrap ansic_enh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1451 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1452 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1453
6267
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1454 element="Diagnostics <assert.h>"
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1455 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
1456 func_section_wrap ansic_enh_assert_diagnostics
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1457 func_wrap H3
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1458 func_echo "$element"
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1459
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1460 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
1461 func_module assert
6267
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1462 func_module verify
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1463 func_end_table
58c87cabeb1c * modules/verify: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6237
diff changeset
1464
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1465 element="Memory management functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1466 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
1467 func_section_wrap ansic_enh_stdlib_memory
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1468 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1469 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1470
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1471 func_begin_table
5090
c95736363690 (func_all_modules): Add calloc, to match
Paul Eggert <eggert@cs.ucla.edu>
parents: 5004
diff changeset
1472 func_module calloc
4922
2050defa7dab New module 'eealloc'.
Bruno Haible <bruno@clisp.org>
parents: 4883
diff changeset
1473 func_module eealloc
5004
0d750c5a291b (func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents: 4940
diff changeset
1474 func_module free
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1475 func_module malloc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1476 func_module realloc
5682
f8c8874bd832 New module 'pagealign_alloc'.
Bruno Haible <bruno@clisp.org>
parents: 5655
diff changeset
1477 func_module pagealign_alloc
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1478 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1479
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1480 element="Date and time <time.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1481 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
1482 func_section_wrap ansic_enh_time_datetime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1483 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1484 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1485
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1486 func_begin_table
6492
f65821c002c5 (Date and time <time.h>): Add fprintftime.
Jim Meyering <jim@meyering.net>
parents: 6360
diff changeset
1487 func_module fprintftime
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1488 func_module strftime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1489 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1490
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1491 element="Extra functions based on ANSI C 89"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1492 func_section_wrap ansic_ext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1493 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1494 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1495
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1496 element="Memory management functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1497 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
1498 func_section_wrap ansic_ext_stdlib_memory
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1499 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1500 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1501
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1502 func_begin_table
4883
e36fe7f8dec3 Add xsize. Forgotten commit on 2003-11-04.
Bruno Haible <bruno@clisp.org>
parents: 4802
diff changeset
1503 func_module xsize
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1504 func_module xalloc
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1505 func_module xalloc-die
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1506 func_module alloca
5273
0e6f016e3192 New modules 'alloca-opt'.
Bruno Haible <bruno@clisp.org>
parents: 5219
diff changeset
1507 func_module alloca-opt
4924
b57cdc107eca New module 'allocsa'.
Bruno Haible <bruno@clisp.org>
parents: 4922
diff changeset
1508 func_module allocsa
4926
4132e2ba0a9c New module 'xallocsa'.
Bruno Haible <bruno@clisp.org>
parents: 4924
diff changeset
1509 func_module xallocsa
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1510 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1511
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1512 element="Integer arithmetic functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1513 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
1514 func_section_wrap ansic_ext_stdlib_arith
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1515 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1516 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1517
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1518 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1519 func_module gcd
4207
b9f1372430fa New module minmax.
Bruno Haible <bruno@clisp.org>
parents: 4201
diff changeset
1520 func_module minmax
4191
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="Environment variables <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1524 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
1525 func_section_wrap ansic_ext_stdlib_env
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1526 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1527 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1528
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1529 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1530 func_module putenv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1531 func_module setenv
4215
12551f0a3830 New module xsetenv.
Bruno Haible <bruno@clisp.org>
parents: 4207
diff changeset
1532 func_module xsetenv
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1533 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1534
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1535 element="Character handling <ctype.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1536 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
1537 func_section_wrap ansic_ext_ctype
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1538 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1539 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1540
4221
06a92cabf1fc New module stpncpy.
Bruno Haible <bruno@clisp.org>
parents: 4215
diff changeset
1541 func_begin_table
06a92cabf1fc New module stpncpy.
Bruno Haible <bruno@clisp.org>
parents: 4215
diff changeset
1542 func_module c-ctype
06a92cabf1fc New module stpncpy.
Bruno Haible <bruno@clisp.org>
parents: 4215
diff changeset
1543 func_end_table
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1544
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1545 element="String handling <string.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1546 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
1547 func_section_wrap ansic_ext_string
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1548 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1549 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1550
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1551 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1552 func_module bcopy
5317
55fa1d36be4b (Extra functions based on ANSI C 89): Add memmem.
Simon Josefsson <simon@josefsson.org>
parents: 5292
diff changeset
1553 func_module memmem
4456
db99894dd9b7 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents: 4405
diff changeset
1554 func_module mempcpy
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1555 func_module memrchr
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1556 func_module stpcpy
4221
06a92cabf1fc New module stpncpy.
Bruno Haible <bruno@clisp.org>
parents: 4215
diff changeset
1557 func_module stpncpy
6359
dbf2af5391cd New module 'c-strcase'.
Bruno Haible <bruno@clisp.org>
parents: 6267
diff changeset
1558 func_module c-strcase
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1559 func_module strcase
6360
74a5018452c0 New module 'c-strcasestr'.
Bruno Haible <bruno@clisp.org>
parents: 6359
diff changeset
1560 func_module c-strcasestr
6058
a7440145d6a9 New module 'strcasestr'.
Bruno Haible <bruno@clisp.org>
parents: 6055
diff changeset
1561 func_module strcasestr
4388
889d35a53bf1 New modules strchrnul, argp.
Bruno Haible <bruno@clisp.org>
parents: 4294
diff changeset
1562 func_module strchrnul
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1563 func_module strdup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1564 func_module strnlen
6047
085fe0908938 New module 'strnlen1'.
Bruno Haible <bruno@clisp.org>
parents: 6046
diff changeset
1565 func_module strnlen1
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1566 func_module strndup
5292
facb079a01da New module 'strsep'.
Bruno Haible <bruno@clisp.org>
parents: 5283
diff changeset
1567 func_module strsep
7209
b528c3e6739e New module 'c-strstr'.
Bruno Haible <bruno@clisp.org>
parents: 7199
diff changeset
1568 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
1569 func_module trim
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1570 #func_module fstrcmp
4587
db90c263cc55 Add an include file to module 'strndup'.
Bruno Haible <bruno@clisp.org>
parents: 4524
diff changeset
1571 func_module xstrndup
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1572 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1573
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1574 element="Numeric conversion functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1575 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
1576 func_section_wrap ansic_ext_stdlib_conv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1577 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1578 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1579
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1580 func_begin_table
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1581 func_module c-strtod
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1582 func_module c-strtold
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1583 func_module xstrtod
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1584 func_module xstrtol
6912
314715e0260d Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6899
diff changeset
1585 func_module xstrtold
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1586 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1587
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1588 element="Date and time <time.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1589 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
1590 func_section_wrap ansic_ext_time_datetime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1591 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1592 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1593
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1594 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1595 func_module getdate
4616
40e97ca1f46c New module 'timegm'.
Bruno Haible <bruno@clisp.org>
parents: 4603
diff changeset
1596 func_module timegm
5004
0d750c5a291b (func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents: 4940
diff changeset
1597 func_module tzset
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1598 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1599
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1600 element="Input/Output <stdio.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1601 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
1602 func_section_wrap ansic_ext_stdio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1603 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1604 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1605
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1606 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1607 func_module unlocked-io
4715
7955c362317f New module 'fwriteerror'.
Bruno Haible <bruno@clisp.org>
parents: 4621
diff changeset
1608 func_module fwriteerror
4224
83eabea25586 New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents: 4221
diff changeset
1609 func_module vasnprintf
83eabea25586 New modules vasnprintf and vasprintf.
Bruno Haible <bruno@clisp.org>
parents: 4221
diff changeset
1610 func_module vasprintf
5218
f96c64693f86 New module 'xvasprintf'.
Bruno Haible <bruno@clisp.org>
parents: 5203
diff changeset
1611 func_module xvasprintf
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1612 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1613
4770
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1614 element="Signal handling <signal.h>"
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1615 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
1616 func_section_wrap ansic_ext_signal
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1617 func_wrap H3
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1618 func_echo "$element"
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1619
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1620 func_begin_table
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1621 func_module fatal-signal
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1622 func_module raise
4770
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1623 func_end_table
6708dc21dacc New module 'fatal-signal'.
Bruno Haible <bruno@clisp.org>
parents: 4763
diff changeset
1624
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1625 element="Command-line arguments"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1626 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
1627 func_section_wrap ansic_ext_argv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1628 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1629 func_echo "$element"
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 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1632 func_module argmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1633 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
1634 func_module version-etc-fsf
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1635 func_module long-options
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1636 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1637
6985
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1638 element="Container data structures"
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1639 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
1640 func_section_wrap ansic_ext_container
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1641 func_wrap H3
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1642 func_echo "$element"
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1643
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1644 func_begin_table
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1645 func_module list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1646 func_module array-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1647 func_module carray-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1648 func_module linked-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1649 func_module avltree-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1650 func_module rbtree-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1651 func_module linkedhash-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1652 func_module avltreehash-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1653 func_module rbtreehash-list
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1654 func_module oset
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1655 func_module array-oset
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1656 func_module avltree-oset
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1657 func_module rbtree-oset
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1658 func_end_table
411396e3f40c New modules for lists and ordered sets.
Bruno Haible <bruno@clisp.org>
parents: 6970
diff changeset
1659
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1660 element="Cryptographic computations"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1661 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
1662 func_section_wrap ansic_ext_crypto
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1663 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1664 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1665
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1666 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1667 func_module md5
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1668 func_module sha1
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1669 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1670
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1671 element="Misc"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1672 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
1673 func_section_wrap ansic_ext_misc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1674 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1675 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1676
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1677 func_begin_table
5498
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents: 5434
diff changeset
1678 func_module base64
6028
5c3c29f4daf9 Fix typo in last commit.
Simon Josefsson <simon@josefsson.org>
parents: 6027
diff changeset
1679 func_module check-version
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1680 func_module diacrit
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1681 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
1682 func_module getdelim
4460
1892b6732a40 New module 'getnline'.
Bruno Haible <bruno@clisp.org>
parents: 4457
diff changeset
1683 func_module getnline
4463
7564fca8961e New module 'getndelim2'.
Bruno Haible <bruno@clisp.org>
parents: 4460
diff changeset
1684 func_module getndelim2
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1685 func_module linebuffer
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1686 func_module obstack
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1687 func_module hash-pjw
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1688 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
1689 func_module readline
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1690 func_module readtokens
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1691 func_module readtokens0
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1692 func_module strverscmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1693 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1694
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1695 element="Support for systems lacking ISO C 99"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1696 func_section_wrap isoc_sup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1697 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1698 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1699
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
1700 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
1701 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
1702 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
1703 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
1704 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
1705
6445e932e417 (Sizes of integer types <limits.h>): New element, with new ullong_max module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5598
diff changeset
1706 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
1707 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
1708 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
1709
6774
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1710 element="Variable arguments <stdarg.h>"
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1711 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1712 func_section_wrap isoc_sup_stdarg
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1713 func_wrap H3
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1714 func_echo "$element"
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1715
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1716 func_begin_table
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1717 func_module stdarg
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1718 func_end_table
dc482bc540d0 New module 'stdarg'.
Bruno Haible <bruno@clisp.org>
parents: 6691
diff changeset
1719
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1720 element="Boolean type and values <stdbool.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1721 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
1722 func_section_wrap isoc_sup_stdbool
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1723 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1724 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1725
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1726 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1727 func_module stdbool
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1728 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1729
5219
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1730 element="Integer types and values <stdint.h>"
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1731 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1732 func_section_wrap isoc_sup_stdint
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1733 func_wrap H3
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1734 func_echo "$element"
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1735
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1736 func_begin_table
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1737 func_module stdint
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1738 func_end_table
fcff9e1a6e22 New module 'stdint'.
Bruno Haible <bruno@clisp.org>
parents: 5218
diff changeset
1739
5283
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1740 element="Input/output <stdio.h>"
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1741 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
1742 func_section_wrap isoc_sup_stdio
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1743 func_wrap H3
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1744 func_echo "$element"
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1745
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1746 func_begin_table
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1747 func_module snprintf
5340
11ff7526b7b9 New module 'vsnprintf'.
Bruno Haible <bruno@clisp.org>
parents: 5317
diff changeset
1748 func_module vsnprintf
5283
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1749 func_end_table
dc424f1dfc9f snprintf is C 99, not just POSIX.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5282
diff changeset
1750
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1751 element="Numeric conversion functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1752 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1753 func_section_wrap isoc_sup_stdlib_conv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1754 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1755 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1756
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1757 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1758 func_module strtoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1759 func_module strtoull
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1760 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1761
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1762 element="Functions for greatest-width integer types <inttypes.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1763 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
1764 func_section_wrap isoc_sup_inttypes
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1765 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1766 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1767
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1768 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1769 func_module strtoimax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1770 func_module strtoumax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1771 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1772
4240
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1773 element="Mathematics <math.h>"
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1774 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1775 func_section_wrap isoc_sup_math
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1776 func_wrap H3
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1777 func_echo "$element"
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1778
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1779 func_begin_table
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1780 func_module mathl
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1781 func_end_table
6918c3fd6d40 Add module mathl.
Bruno Haible <bruno@clisp.org>
parents: 4237
diff changeset
1782
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1783 element="Enhancements for ISO C 99 functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1784 func_section_wrap isoc_enh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1785 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1786 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1787
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1788 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1789 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1790
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1791 element="Extra functions based on ISO C 99"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1792 func_section_wrap isoc_ext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1793 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1794 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1795
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1796 element="Numeric conversion functions <stdlib.h>"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1797 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
1798 func_section_wrap isoc_ext_stdlib_conv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1799 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1800 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1801
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1802 func_begin_table
6657
25df81cf2f51 * modules/intprops: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6555
diff changeset
1803 func_module intprops
5004
0d750c5a291b (func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents: 4940
diff changeset
1804 func_module inttostr
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1805 func_module xstrtoimax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1806 func_module xstrtoumax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1807 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1808
6044
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1809 element="Extended multibyte and wide character utilities <wchar.h>"
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1810 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1811 func_section_wrap isoc_ext_wchar_mb
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1812 func_wrap H3
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1813 func_echo "$element"
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1814
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1815 func_begin_table
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1816 func_module mbchar
6045
283b5e8d287a New module 'mbiter'.
Bruno Haible <bruno@clisp.org>
parents: 6044
diff changeset
1817 func_module mbiter
6055
a87afe9c4648 New module 'mbuiter'.
Bruno Haible <bruno@clisp.org>
parents: 6047
diff changeset
1818 func_module mbuiter
6046
455e151721e5 New module 'mbfile'.
Bruno Haible <bruno@clisp.org>
parents: 6045
diff changeset
1819 func_module mbfile
6044
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1820 func_end_table
522ff3fa7995 New module 'mbchar'.
Bruno Haible <bruno@clisp.org>
parents: 6042
diff changeset
1821
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1822 element="Support for systems lacking POSIX:2001"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1823 func_section_wrap posix_sup
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1824 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1825 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1826
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1827 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1828 func_module chown
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1829 func_module dup2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1830 func_module ftruncate
5408
02eeb2ef41ed Add getaddrinfo.
Simon Josefsson <simon@josefsson.org>
parents: 5340
diff changeset
1831 func_module getaddrinfo
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1832 func_module getcwd
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1833 func_module getgroups
4763
0d7756a5da9e Put gethostname into the right section.
Bruno Haible <bruno@clisp.org>
parents: 4762
diff changeset
1834 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
1835 func_module getlogin_r
5138
965e5e2eaeac New module 'getsubopt'.
Bruno Haible <bruno@clisp.org>
parents: 5113
diff changeset
1836 func_module getsubopt
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1837 func_module gettimeofday
5825
96441be32be1 New module 'inet_ntop'.
Bruno Haible <bruno@clisp.org>
parents: 5813
diff changeset
1838 func_module inet_ntop
6850
3f958200ca97 Add inet_pton.
Simon Josefsson <simon@josefsson.org>
parents: 6774
diff changeset
1839 func_module inet_pton
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1840 func_module mkdir
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1841 func_module mkstemp
4237
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents: 4224
diff changeset
1842 func_module mkdtemp
4242
eec6ba9ed532 New module poll, from Paolo Bonzini <bonzini@gnu.org>.
Bruno Haible <bruno@clisp.org>
parents: 4240
diff changeset
1843 func_module poll
4405
55fc591dca07 New module 'readlink'.
Bruno Haible <bruno@clisp.org>
parents: 4392
diff changeset
1844 func_module readlink
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1845 func_module lstat
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
1846 func_module time_r
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1847 func_module timespec
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1848 func_module nanosleep
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1849 func_module regex
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1850 func_module rename
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1851 func_module rmdir
7503
a55a9e67f244 New module 'sigprocmask'.
Bruno Haible <bruno@clisp.org>
parents: 7325
diff changeset
1852 func_module sigprocmask
6031
ebb8bbda65c2 Add ssize_t.
Simon Josefsson <simon@josefsson.org>
parents: 6028
diff changeset
1853 func_module ssize_t
5434
a8dc5f46b8bf Add strtok_r.
Simon Josefsson <simon@josefsson.org>
parents: 5408
diff changeset
1854 func_module strtok_r
6899
4f743199c786 * MODULES.html.sh: Add sys_stat.
Eric Blake <ebb9@byu.net>
parents: 6889
diff changeset
1855 func_module sys_stat
6691
a5b9b6b26301 * MODULES.html.sh (Support for systems lacking POSIX:2001):
Paul Eggert <eggert@cs.ucla.edu>
parents: 6657
diff changeset
1856 func_module unistd
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1857 func_module utime
6878
9ae5979172e8 * modules/wcwidth: New file.
Eric Blake <ebb9@byu.net>
parents: 6850
diff changeset
1858 func_module wcwidth
4191
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
7162
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
1861 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
1862 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
1863 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
1864 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
1865
7194
798177a9e648 Fix HTML structure.
Bruno Haible <bruno@clisp.org>
parents: 7184
diff changeset
1866 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
1867 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
1868 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
1869 func_module link-follow
7306
57043fbf87a2 [ChangeLog]
Jim Meyering <jim@meyering.net>
parents: 7263
diff changeset
1870 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
1871 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
1872 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
1873 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
1874 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
1875 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
1876
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1877 element="Enhancements for POSIX:2001 functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1878 func_section_wrap posix_enh
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1879 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1880 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1881
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1882 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1883 func_module dirname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1884 func_module getopt
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1885 func_module unistd-safer
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1886 func_module fnmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1887 func_module fnmatch-posix
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1888 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
1889 func_module glob
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1890 func_module exclude
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1891 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1892
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1893 element="Extra functions based on POSIX:2001"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1894 func_section_wrap posix_ext
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1895 func_wrap H2
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1896 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1897
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1898 element="Numeric conversion functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1899 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
1900 func_section_wrap posix_ext_conv
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1901 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1902 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1903
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1904 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1905 func_module human
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1906 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1907
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1908 element="File system functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1909 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
1910 func_section_wrap posix_ext_filesys
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1911 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1912 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1913
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1914 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1915 func_module acl
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1916 func_module backupfile
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1917 func_module canonicalize
7044
4165bec5f3a2 New module 'clean-temp'.
Bruno Haible <bruno@clisp.org>
parents: 7043
diff changeset
1918 func_module clean-temp
4269
45a2c0a1d4bb New module copy-file.
Bruno Haible <bruno@clisp.org>
parents: 4242
diff changeset
1919 func_module copy-file
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1920 func_module cycle-check
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1921 func_module fsusage
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1922 func_module dirfd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1923 func_module euidaccess
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1924 func_module file-type
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1925 func_module fileblocks
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1926 func_module filemode
5907
c47674a83a78 Sync from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5902
diff changeset
1927 func_module filenamecat
5872
fab6701e5cb2 New fts module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5852
diff changeset
1928 func_module fts
fab6701e5cb2 New fts module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5852
diff changeset
1929 func_module fts-lgpl
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1930 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
1931 func_module lchmod
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1932 func_module lchown
6970
31455307b983 Fix mispelling in previous change: mkancestors -> mkancesdirs
Paul Eggert <eggert@cs.ucla.edu>
parents: 6969
diff changeset
1933 func_module mkancesdirs
5907
c47674a83a78 Sync from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5902
diff changeset
1934 func_module mkdir-p
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1935 func_module modechange
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1936 func_module mountlist
4271
76382576bc2e New module 'pathname'.
Bruno Haible <bruno@clisp.org>
parents: 4269
diff changeset
1937 func_module pathname
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1938 func_module pathmax
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1939 func_module same
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1940 func_module save-cwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1941 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
1942 func_module savewd
6237
d81a8251a9b0 * MODULES.html.sh (File system functions): Add stat-time.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6113
diff changeset
1943 func_module stat-time
7043
4f84bccd7da0 New module 'tmpdir'.
Bruno Haible <bruno@clisp.org>
parents: 7034
diff changeset
1944 func_module tmpdir
5852
995d030c6a1f New unlinkdir module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5848
diff changeset
1945 func_module unlinkdir
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1946 func_module utimecmp
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
1947 func_module utimens
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1948 func_module xgetcwd
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1949 func_module xreadlink
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1950 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1951
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1952 element="File descriptor based Input/Output"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1953 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
1954 func_section_wrap posix_ext_filedesc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1955 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1956 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1957
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1958 func_begin_table
6098
e334970e0ec6 (File descriptor based Input/Output): Add fcntl-safer.
Jim Meyering <jim@meyering.net>
parents: 6058
diff changeset
1959 func_module fcntl-safer
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1960 func_module safe-read
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1961 func_module safe-write
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1962 func_module full-read
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1963 func_module full-write
4273
72b1283160ce New module 'binary-io'.
Bruno Haible <bruno@clisp.org>
parents: 4271
diff changeset
1964 func_module binary-io
7233
ec85aace506a * modules/isapipe: New file.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7209
diff changeset
1965 func_module isapipe
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1966 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1967
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1968 element="File stream based Input/Output"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1969 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
1970 func_section_wrap posix_ext_filestream
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1971 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1972 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1973
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1974 func_begin_table
7046
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
1975 func_module close-stream
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1976 func_module closeout
7046
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
1977 func_module fopen-safer
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
1978 func_module fpending
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1979 func_module getpass
4490
3994ca24c3a0 New module 'getpass-gnu'.
Bruno Haible <bruno@clisp.org>
parents: 4463
diff changeset
1980 func_module getpass-gnu
7046
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
1981 func_module stdlib-safer
5b0836e010ca * MODULES.html.sh (File stream based Input/Output):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7044
diff changeset
1982 func_module tmpfile-safer
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1983 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1984
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1985 element="Users and groups"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1986 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
1987 func_section_wrap posix_ext_uidgid
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1988 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1989 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1990
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1991 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1992 func_module getugroups
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1993 func_module group-member
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1994 func_module idcache
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1995 func_module userspec
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1996 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1997
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1998 element="Date and time"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
1999 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
2000 func_section_wrap posix_ext_datetime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2001 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2002 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2003
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2004 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2005 func_module gettime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2006 func_module settime
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2007 func_module posixtm
5203
489bbed47b3a Add xalloc-die, c-strtod, c-strtold, raise,
Paul Eggert <eggert@cs.ucla.edu>
parents: 5138
diff changeset
2008 func_module xnanosleep
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2009 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2010
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2011 element="Networking functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2012 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
2013 func_section_wrap posix_ext_net
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2014 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2015 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2016
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2017 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2018 func_module xgethostname
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2019 func_module canon-host
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2020 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2021
5994
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2022 element="Multithreading"
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2023 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
2024 func_section_wrap posix_ext_thread
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2025 func_wrap H3
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2026 func_echo "$element"
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2027
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2028 func_begin_table
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2029 func_module lock
6042
ab97b105b804 New module 'tls'.
Bruno Haible <bruno@clisp.org>
parents: 6031
diff changeset
2030 func_module tls
5994
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2031 func_end_table
8694796f8a72 New gnulib module 'lock'.
Bruno Haible <bruno@clisp.org>
parents: 5979
diff changeset
2032
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2033 element="Internationalization functions"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2034 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
2035 func_section_wrap posix_ext_i18n
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2036 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2037 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2038
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2039 func_begin_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2040 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
2041 func_module gettext-h
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2042 func_module iconv
7263
461dfc79ca17 New modules 'striconv' and 'xstriconv'.
Bruno Haible <bruno@clisp.org>
parents: 7258
diff changeset
2043 func_module striconv
461dfc79ca17 New modules 'striconv' and 'xstriconv'.
Bruno Haible <bruno@clisp.org>
parents: 7258
diff changeset
2044 func_module xstriconv
5655
7916399df6df 2005-02-22 Simon Josefsson <jas@extundo.com>
Simon Josefsson <simon@josefsson.org>
parents: 5628
diff changeset
2045 func_module iconvme
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2046 func_module localcharset
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2047 func_module hard-locale
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2048 func_module mbswidth
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2049 func_module memcasecmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2050 func_module memcoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2051 func_module xmemcoll
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2052 func_module unicodeio
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2053 func_module rpmatch
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2054 func_module yesno
4275
e272bc901785 New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
2055 func_module ucs4-utf8
e272bc901785 New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
2056 func_module ucs4-utf16
e272bc901785 New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
2057 func_module utf8-ucs4
e272bc901785 New modules: utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
Bruno Haible <bruno@clisp.org>
parents: 4273
diff changeset
2058 func_module utf16-ucs4
4286
30efb146649e New module 'linebreak'.
Bruno Haible <bruno@clisp.org>
parents: 4275
diff changeset
2059 func_module linebreak
7155
2e4fe1dcb542 New module 'bison-i18n',
Bruno Haible <bruno@clisp.org>
parents: 7100
diff changeset
2060 func_module bison-i18n
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2061 func_end_table
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2062
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2063 element="Executing programs"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2064 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
2065 func_section_wrap posix_ext_exec
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2066 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2067 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2068
4294
f292c9f75051 New module 'findprog'.
Bruno Haible <bruno@clisp.org>
parents: 4286
diff changeset
2069 func_begin_table
5004
0d750c5a291b (func_all_modules): Add cloexec, inttostr, free, tzset.
Jim Meyering <jim@meyering.net>
parents: 4940
diff changeset
2070 func_module cloexec
4294
f292c9f75051 New module 'findprog'.
Bruno Haible <bruno@clisp.org>
parents: 4286
diff changeset
2071 func_module findprog
4802
16d77b789c30 New module 'wait-process'.
Bruno Haible <bruno@clisp.org>
parents: 4772
diff changeset
2072 func_module wait-process
4936
0fb731aa9b43 New module 'execute'.
Bruno Haible <bruno@clisp.org>
parents: 4926
diff changeset
2073 func_module execute
4940
f3ef51adfb09 New module 'pipe'.
Bruno Haible <bruno@clisp.org>
parents: 4936
diff changeset
2074 func_module pipe
5598
09d49a2e321b New module 'sh-quote'.
Bruno Haible <bruno@clisp.org>
parents: 5498
diff changeset
2075 func_module sh-quote
4294
f292c9f75051 New module 'findprog'.
Bruno Haible <bruno@clisp.org>
parents: 4286
diff changeset
2076 func_end_table
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2077
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2078 element="Java"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2079 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
2080 func_section_wrap posix_ext_java
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2081 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2082 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2083
5608
32021ae605cc New module 'classpath'.
Bruno Haible <bruno@clisp.org>
parents: 5606
diff changeset
2084 func_begin_table
32021ae605cc New module 'classpath'.
Bruno Haible <bruno@clisp.org>
parents: 5606
diff changeset
2085 func_module classpath
5628
0ceadee93518 New module 'javacomp'.
Bruno Haible <bruno@clisp.org>
parents: 5627
diff changeset
2086 func_module javacomp
5627
bce611b24363 New module 'javaexec'.
Bruno Haible <bruno@clisp.org>
parents: 5608
diff changeset
2087 func_module javaexec
7018
096754ee89e4 New module 'javaversion'.
Bruno Haible <bruno@clisp.org>
parents: 7000
diff changeset
2088 func_module javaversion
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2089 #func_module gcj
5608
32021ae605cc New module 'classpath'.
Bruno Haible <bruno@clisp.org>
parents: 5606
diff changeset
2090 func_end_table
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2091
5902
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2092 element="C#"
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2093 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2094 func_section_wrap posix_ext_csharp
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2095 func_wrap H3
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2096 func_echo "$element"
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2097
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2098 func_begin_table
5913
3b9706263c44 New module 'csharpcomp'.
Bruno Haible <bruno@clisp.org>
parents: 5907
diff changeset
2099 func_module csharpcomp
5902
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2100 func_module csharpexec
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2101 func_end_table
95383b7d1b52 New module 'csharpexec'.
Bruno Haible <bruno@clisp.org>
parents: 5898
diff changeset
2102
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2103 element="Misc"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2104 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
2105 func_section_wrap posix_ext_misc
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2106 func_wrap H3
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2107 func_echo "$element"
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2108
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2109 func_begin_table
4388
889d35a53bf1 New modules strchrnul, argp.
Bruno Haible <bruno@clisp.org>
parents: 4294
diff changeset
2110 func_module argp
5092
524f03b4532e Add argz module, which is autoupdated from libtool.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5090
diff changeset
2111 func_module argz
5810
eb19e0aa691a New byteswap module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5682
diff changeset
2112 func_module byteswap
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2113 func_module exitfail
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2114 func_module c-stack
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2115 func_module error
4515
ae4b157d42ad New module 'extensions', used by timespec and unlocked-io
Paul Eggert <eggert@cs.ucla.edu>
parents: 4513
diff changeset
2116 func_module extensions
4733
dbe204edd79d New modules 'getdomainname', 'xgetdomainname'.
Bruno Haible <bruno@clisp.org>
parents: 4715
diff changeset
2117 func_module getdomainname
dbe204edd79d New modules 'getdomainname', 'xgetdomainname'.
Bruno Haible <bruno@clisp.org>
parents: 4715
diff changeset
2118 func_module xgetdomainname
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2119 func_module getloadavg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2120 func_module getpagesize
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2121 func_module getusershell
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2122 func_module physmem
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2123 func_module posixver
4603
fae2e3155b7a New module 'progname'.
Bruno Haible <bruno@clisp.org>
parents: 4587
diff changeset
2124 func_module progname
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2125 func_module quotearg
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2126 func_module quote
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2127 func_module readutmp
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2128 func_module sig2str
4392
c3f755572af2 New module 'sysexits'.
Bruno Haible <bruno@clisp.org>
parents: 4388
diff changeset
2129 func_module sysexits
7093
be990034280e * modules/verror: New module.
Eric Blake <ebb9@byu.net>
parents: 7046
diff changeset
2130 func_module verror
6002
29720e2b877f New gnulib module 'visibility'.
Bruno Haible <bruno@clisp.org>
parents: 5994
diff changeset
2131 func_module visibility
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2132 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
2133
606d04c5f604 * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6492
diff changeset
2134 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
2135 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
2136 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
2137 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
2138
606d04c5f604 * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6492
diff changeset
2139 func_begin_table
7199
85ef7b18536b New config-h module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents: 7198
diff changeset
2140 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
2141 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
2142 func_module dummy
7196
c49e5940a04f * MODULES.html.sh (Support for building libraries and executables):
Paul Eggert <eggert@cs.ucla.edu>
parents: 7194
diff changeset
2143 func_module elisp-comp
6555
ed2b5c29e4cb New module 'ldd'.
Bruno Haible <bruno@clisp.org>
parents: 6529
diff changeset
2144 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
2145 func_module lib-ignore
606d04c5f604 * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6492
diff changeset
2146 func_end_table
6952
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2147
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2148 element="Support for building documentation"
7000
d6a8f3b8565f * modules/stdlib-safer: New file.
Eric Blake <ebb9@byu.net>
parents: 6996
diff changeset
2149 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
2150 func_wrap H2
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2151 func_echo "$element"
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2152
6996
a0ccff1f7d50 Fix HTML syntax.
Bruno Haible <bruno@clisp.org>
parents: 6985
diff changeset
2153 func_begin_table
6952
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2154 func_module fdl
6958
1cfa258b139c * MODULES.html.sh: Add gendocs.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
2155 func_module gendocs
7235
3dbbe645b976 * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7233
diff changeset
2156 func_module gpl
3dbbe645b976 * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7233
diff changeset
2157 func_module lgpl
7184
5b9dbce7a3b6 * modules/regexprops-generic: New file.
Eric Blake <ebb9@byu.net>
parents: 7178
diff changeset
2158 func_module regexprops-generic
6952
b1f02ed7eeab * modules/fdl: New module, to install doc/fdl.texi.
Eric Blake <ebb9@byu.net>
parents: 6912
diff changeset
2159 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
2160
7178
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2161 element="Support for maintaining and release projects"
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2162 func_section_wrap maintain
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2163 func_wrap H2
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2164 func_echo "$element"
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2165
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2166 func_begin_table
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2167 func_module gnupload
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2168 func_module maintainer-makefile
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2169 func_end_table
e8fe34306afa Add gnupload module.
Simon Josefsson <simon@josefsson.org>
parents: 7162
diff changeset
2170
7162
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2171 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
2172 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
2173 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
2174 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
2175
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2176 func_begin_table
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2177 func_module host-os
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2178 func_module perl
19c2e5121b2f Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents: 7155
diff changeset
2179 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
2180 func_end_table
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2181 }
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2182
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2183
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2184 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2185 func_begin HTML
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2186
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2187 func_begin HEAD
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2188
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2189 element="Gnulib Module List"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2190 func_wrap TITLE
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2191 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2192
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2193 modules=`gnulib-tool --list`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2194 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
2195 func_echo '<META NAME="keywords" CONTENT="'"${modules}"'">'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2196
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2197 func_end HEAD
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2198
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2199 func_begin BODY
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2200
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2201 element="Gnulib Module List"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2202 func_wrap H1
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2203 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2204
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2205 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
2206
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2207 in_toc=yes
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2208 func_all_modules
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2209
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2210 in_toc=
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2211 func_all_modules
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2212
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2213 if test -n "$missed_modules"; then
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2214
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2215 element="Unclassified modules - please update MODULES.html.sh"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2216 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2217 func_wrap H2
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2218 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2219
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2220 func_begin_table
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2221 for module in $missed_modules; do
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2222 func_module $module
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2223 done
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2224 func_end_table
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2225
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2226 fi
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2227
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2228 if test -n "$missed_files"; then
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2229
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2230 element="Lone files - please create new modules containing them"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2231 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2232 func_wrap H2
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2233 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2234
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2235 func_echo '<PRE>'
4191
ff02fdcea265 Table of contents, and hyperlinks.
Bruno Haible <bruno@clisp.org>
parents: 4163
diff changeset
2236 echo "$missed_files" | sed -e 's,^\(.*\)$,<A HREF="\1">\1</A>,'
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2237 echo '</PRE>'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2238
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2239 fi
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2240
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2241 element="Future developments"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2242 element=`printf "%s" "$element" | sed -e "$sed_lt" -e "$sed_gt"`
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2243 func_wrap H2
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2244 func_echo "$element"
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2245
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2246 func_echo 'Ideally a module could consist of:'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2247 func_begin UL
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2248 func_echo '<LI>A header file: lib/<VAR>module</VAR>.h'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2249 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
2250 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
2251 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
2252 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
2253 func_echo '<LI>Some documentation'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2254 func_echo '<LI>A POT file and some PO files'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2255 func_end UL
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2256
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2257 func_echo '<HR>'
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2258 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
2259
4457
0bb648a6b915 Fix an HTML bug.
Bruno Haible <bruno@clisp.org>
parents: 4456
diff changeset
2260 func_end BODY
0bb648a6b915 Fix an HTML bug.
Bruno Haible <bruno@clisp.org>
parents: 4456
diff changeset
2261
4113
9266e59eff21 Generator for MODULES.html.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2262 func_end HTML