X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=MODULES.html;h=ed129ba51e28f125daa7f07c7e7d9838c5a9bb18;hb=76bd5cd5304484617bd8b15bfc8a59b0264482b8;hp=6ddf71f05b477cdd8530fe5f4c2ff8989242f72e;hpb=06a946707465c071bb0a15fcc7498532967679e1;p=gnulib.git diff --git a/MODULES.html b/MODULES.html index 6ddf71f05..ed129ba51 100644 --- a/MODULES.html +++ b/MODULES.html @@ -2,7 +2,7 @@ Gnulib Module List - +

Gnulib Module List

@@ -18,6 +18,10 @@ Allow the installer to disable assertions through "configure --disable-assert". + dummy + A dummy file, to make sure the library is non-empty. + + exit exit() function: program termination. @@ -119,13 +123,23 @@ xalloc - Memory allocation with out-of-memory checking. + Memory allocation with out-of-memory checking. Also see xalloc-die. + + + xalloc-die + Report a memory allocation failure and exit. alloca Memory allocation on the stack. + alloca-opt + Memory allocation on the stack, as an optional optimization. +It allows using the alloca() macro if and only if the autoconf tests define +HAVE_ALLOCA. + + allocsa Safe automatic memory allocation. @@ -176,6 +190,10 @@ Old BSD bcopy() function: copy memory area. + memmem + memmem() function: locate first substring in a buffer. + + mempcpy mempcpy() function: copy memory area, return point after last written byte. @@ -212,6 +230,10 @@ strndup() function: duplicate a size-bounded string. + strsep + strsep() function: extract token from string. + + xstrndup Duplicate a bounded initial segment of a string, with out-of-memory checking. @@ -219,6 +241,14 @@

Numeric conversion functions <stdlib.h>

+ + + + @@ -260,6 +290,10 @@ + +
c-strtod + Convert string to double in C locale. +
c-strtold + Convert string to long double in C locale. +
xstrtod Convert string to 'double', with error checking.
vasprintf vsprintf with automatic memory allocation.
xvasprintf + vasprintf and asprintf with out-of-memory checking. Also see xalloc-die. +

Signal handling <signal.h>

@@ -267,6 +301,10 @@ + +
fatal-signal Emergency actions in case of a fatal signal.
raise + Send a signal to the executing process. +

Command-line arguments

@@ -290,8 +328,8 @@ -
Compute MD5 checksum.
sha - Compute SHA checksum. + sha1 + Compute SHA1 checksum.

Misc

@@ -334,6 +372,10 @@ memory allocation. Read tokens from a stream. + readtokens0 + Read NUL-separated tokens from a stream. + + strverscmp Compare strings holding version numbers. @@ -354,6 +396,27 @@ memory allocation. (Nearly: casts to bool may not work.) +

Integer types and values <stdint.h>

+ + + +
stdint + An <stdint.h> that nearly conforms to C99. +(Nearly: {uint,int}_{fast,least}{8,16,32,64}_t may not correspond +to the fastest and smallest types available on the system.) +
+

Input/output <stdio.h>

+ + + + + +
snprintf + snprintf() function: print formatted output to a fixed length string +
vsnprintf + vsnprintf() function: print formatted output from an stdarg argument list +to a fixed length string +

Numeric conversion functions <stdlib.h>

@@ -417,6 +480,10 @@ memory allocation. + + @@ -425,6 +492,10 @@ memory allocation. + + @@ -496,6 +567,10 @@ memory allocation. + + @@ -537,10 +612,18 @@ with K/M/G suffix. variables. + + + + @@ -614,6 +697,14 @@ directory. + + + + @@ -701,6 +792,10 @@ directory. + +
ftruncate() function: truncate an open file to a specified length.
getcwd + Return the current working directory. +
getgroups getgroups() function: return the supplementary group IDs of the current process.
gethostname() function: Return machine's hostname.
getsubopt + getsubopt: Parse comma separate list into words. +
gettimeofday gettimeofday() function: return current time.
Process command line arguments.
fcntl-safer + File control functions that avoid clobbering std{in,out,err}. +
unistd-safer File descriptor functions that avoid clobbering STD{IN,OUT,ERR}_FILENO.
canonicalize + Return the canonical absolute name of a given file. +
copy-file Copying of files.
cycle-check + help detect directory cycles efficiently +
fsusage Return filesystem space usage info.
Return the entries of a directory (just the names) as an argz string.
utimecmp + compare file time stamps +
utimens + Set file access and modification times. +
xgetcwd Return the current working directory, without size limitations.
posixtm Convert a date/time string (POSIX syntax) to linear time or broken-down time.
xnanosleep + a more convenient interface to nanosleep +

Networking functions

@@ -833,10 +928,6 @@ usually the host name including FQDN. - - @@ -921,6 +1012,13 @@ variables. + + + + + + + + + + + + + + + +
Enable extensions in standard headers
fatal - Error reporting for fatal errors. -
getdomainname getdomainname() function: Return machine's NIS domain name.
---
dummy + --- + dummy.c + --- + --- +
exit #include "exit.h" --- @@ -1098,7 +1196,7 @@ variables.
strftime - #include <time.h> + #include "strftime.h" strftime.c mbstate_t.m4
tm_gmtoff.m4
strftime.m4
gl_FUNC_GNU_STRFTIME
time_r
tzset @@ -1131,9 +1229,16 @@ variables.
xalloc #include "xalloc.h" - xmalloc.c
xstrdup.c +
xmalloc.c xalloc.m4
gl_XALLOC -
error
gettext
exitfail +
--- +
xalloc-die + #include "xalloc.h" + xalloc-die.c + --- + xalloc
error
gettext
exitfail
alloca @@ -1143,11 +1248,18 @@ variables. ---
alloca-opt + #include <alloca.h> + alloca_.h + alloca.m4
gl_FUNC_ALLOCA +
--- +
allocsa #include "allocsa.h" allocsa.c allocsa.m4
eealloc.m4
longlong.m4
longdouble.m4
gl_ALLOCSA -
alloca + alloca-opt
xallocsa @@ -1216,7 +1328,7 @@ variables. #include "setenv.h" setenv.c
unsetenv.c
setenv.m4
gt_FUNC_SETENV -
allocsa
alloca +
allocsa
alloca-opt
xsetenv @@ -1274,6 +1386,13 @@ variables. ---
memmem + #include "memmem.h" + memmem.c + memmem.m4
gl_FUNC_MEMMEM +
--- +
mempcpy #include "mempcpy.h" mempcpy.c @@ -1337,6 +1456,13 @@ variables. strnlen
strsep + #include "strsep.h" + strsep.c + strsep.m4
gl_FUNC_STRSEP +
strpbrk +
xstrndup #include "xstrndup.h" xstrndup.c @@ -1361,6 +1487,20 @@ variables. Depends on
c-strtod + #include "c-strtod.h" + c-strtod.c + c-strtod.m4
gl_C_STRTOD +
extensions +
c-strtold + #include "c-strtod.h" + c-strtod.c
c-strtold.c +
c-strtod.m4
gl_C_STRTOLD +
extensions +
xstrtod #include "xstrtod.h" xstrtod.c @@ -1396,7 +1536,7 @@ variables. #include "getdate.h" getdate.y bison.m4
tm_gmtoff.m4
getdate.m4
gl_GETDATE -
timespec
stdbool
gettime
mktime
alloca
unlocked-io +
timespec
stdbool
gettime
mktime
setenv
xalloc
alloca
timegm @@ -1447,8 +1587,8 @@ variables. vasnprintf #include "vasnprintf.h" printf-args.h
printf-args.c
printf-parse.h
printf-parse.c
vasnprintf.c
asnprintf.c -
signed.m4
longdouble.m4
wchar_t.m4
wint_t.m4
longlong.m4
intmax_t.m4
vasnprintf.m4
gl_FUNC_VASNPRINTF -
alloca
xsize +
signed.m4
longdouble.m4
wchar_t.m4
wint_t.m4
longlong.m4
intmax_t.m4
stdint_h.m4
inttypes_h.m4
eoverflow.m4
vasnprintf.m4
gl_FUNC_VASNPRINTF +
alloca-opt
xsize
vasprintf @@ -1457,6 +1597,13 @@ variables. vasprintf.m4
gl_FUNC_VASPRINTF
vasnprintf
xvasprintf + #include "xvasprintf.h" + xvasprintf.c
xasprintf.c +
--- + vasprintf +

Signal handling <signal.h>

@@ -1481,6 +1628,13 @@ variables. + +
fatal-signal.m4
signalblocking.m4
sig_atomic_t.m4
gl_FATAL_SIGNAL
xalloc
stdbool
raise + --- + raise.c + AC_REPLACE_FUNCS(raise) + --- +

Command-line arguments

@@ -1503,14 +1657,14 @@ variables. -
#include "argmatch.h" argmatch.c --- - gettext
error
quotearg
quote
unlocked-io
exit
exitfail +
gettext
error
quotearg
quote
exit
exitfail
version-etc #include "version-etc.h" version-etc.c --- - unlocked-io
gettext +
gettext
long-options @@ -1540,15 +1694,15 @@ variables. md5 #include "md5.h" md5.c - md5.m4
gl_MD5 -
unlocked-io + md5.m4
uint32_t.m4
gl_MD5 +
---
sha - #include "sha.h" - sha.c - sha.m4
gl_SHA -
unlocked-io
md5 +
sha1 + #include "sha1.h" + sha1.c + sha1.m4
gl_SHA1 +
md5

Misc

@@ -1579,7 +1733,7 @@ variables. #include "getline.h" getline.c
getndelim2.h
getndelim2.c getline.m4
getndelim2.m4
ssize_t.m4
AM_FUNC_GETLINE - unlocked-io + --- getnline @@ -1593,20 +1747,20 @@ variables. #include "getndelim2.h" getndelim2.c getndelim2.m4
ssize_t.m4
gl_GETNDELIM2 - unlocked-io + --- linebuffer #include "linebuffer.h" linebuffer.c --- - xalloc
unlocked-io + xalloc obstack #include "obstack.h" obstack.c - obstack.m4
gl_OBSTACK + inttypes_h.m4
obstack.m4
stdint_h.m4
uintmax_t.m4
gl_OBSTACK gettext
exit
exitfail @@ -1628,7 +1782,14 @@ variables. #include "readtokens.h" readtokens.c readtokens.m4
gl_READTOKENS - xalloc
unlocked-io + xalloc + + + readtokens0 + #include "readtokens0.h" + readtokens0.c + --- + obstack strverscmp @@ -1687,6 +1848,61 @@ variables. --- +

Integer types and values <stdint.h>

+ + + + + + + +
modules/ + lib/ + lib/ + m4/ +   +
Module + Header + Implementation + Autoconf macro + Depends on +
stdint + #include <stdint.h> + stdint_.h + stdint.m4
inttypes.m4
gl_STDINT_H +
--- +
+

Input/output <stdio.h>

+ + + + + + + + + +
modules/ + lib/ + lib/ + m4/ +   +
Module + Header + Implementation + Autoconf macro + Depends on +
snprintf + #include "snprintf.h" + snprintf.c + snprintf.m4
gl_FUNC_SNPRINTF +
vasnprintf
minmax +
vsnprintf + #include "vsnprintf.h" + vsnprintf.c + vsnprintf.m4
gl_FUNC_VSNPRINTF +
vasnprintf
minmax +

Numeric conversion functions <stdlib.h>

@@ -1811,7 +2027,7 @@ variables. @@ -1848,7 +2064,7 @@ variables. @@ -1867,6 +2083,13 @@ variables. + + + + @@ -1962,7 +2192,7 @@ variables. @@ -2011,12 +2241,19 @@ variables. + +
inttostr #include "inttostr.h" imaxtostr.c
inttostr.c
offtostr.c
umaxtostr.c -
intmax_t.m4
inttostr.m4
uintmax_t.m4
gl_INTTOSTR +
intmax_t.m4
inttostr.m4
longlong.m4
uintmax_t.m4
gl_INTTOSTR
---
chown #include <unistd.h> - chown.c + chown.c
fchown-stub.c
chown.m4
gl_FUNC_CHOWN
---
---
getcwd + --- + getcwd.c + getcwd-path-max.m4
GL_FUNC_GETCWD_PATH_MAX +
pathmax
same +
getgroups #include <unistd.h> getgroups.c @@ -1881,6 +2104,13 @@ variables. ---
getsubopt + #include "getsubopt.h" + getsubopt.c + getsubopt.m4
gl_FUNC_GETSUBOPT +
strchrnul +
gettimeofday #include <sys/time.h> gettimeofday.c @@ -1925,7 +2155,7 @@ variables.
stat #include <sys/stat.h> - stat.c + stat.c
stat-macros.h
stat.m4
gl_FUNC_STAT
xalloc
#include "regex.h" regex.c regex.m4
gl_REGEX -
alloca
unlocked-io
gettext
restrict +
alloca
gettext
restrict
rename @@ -1974,7 +2204,7 @@ variables.
rmdir #include <unistd.h> - rmdir.c + rmdir.c
stat-macros.h
rmdir.m4
gl_FUNC_RMDIR
---
getopt - #include "getopt.h" - getopt.c
getopt1.c
getopt_int.h +
#include <getopt.h> + getopt_.h
getopt.c
getopt1.c
getopt_int.h
getopt.m4
gl_GETOPT
gettext
fcntl-safer + #include "fcntl-safer.h" + open-safer.c + fcntl-safer.m4
gl_FCNTL_SAFER +
unistd-safer +
unistd-safer #include "unistd-safer.h" dup-safer.c @@ -2049,7 +2286,7 @@ variables. #include "exclude.h" exclude.c exclude.m4
gl_EXCLUDE -
xalloc
strcase
unlocked-io
fnmatch-gnu
stdbool +
xalloc
strcase
fnmatch-gnu
stdbool

Extra functions based on POSIX:2001

@@ -2103,11 +2340,18 @@ variables. backupfile #include "backupfile.h" - backupfile.c
addext.c + backupfile.c dos.m4
d-ino.m4
backupfile.m4
gl_BACKUPFILE argmatch
dirname + canonicalize + #include "canonicalize.h" + canonicalize.c
stat-macros.h + canonicalize.m4
AC_FUNC_CANONICALIZE_FILE_NAME + cycle-check
path-concat
xalloc
xgetcwd + + copy-file #include "copy-file.h" copy-file.c @@ -2115,6 +2359,13 @@ variables. error
safe-read
full-write
binary-io
exit
gettext + cycle-check + #include "cycle-check.h" + cycle-check.c
dev-ino.h + --- + --- + + fsusage #include "fsusage.h" fsusage.c @@ -2131,7 +2382,7 @@ variables. euidaccess #include "euidaccess.h" - euidaccess.c + euidaccess.c
stat-macros.h euidaccess.m4
gl_FUNC_EUIDACCESS group-member @@ -2152,7 +2403,7 @@ variables. filemode #include "filemode.h" - filemode.c + filemode.c
stat-macros.h filemode.m4
gl_FILEMODE --- @@ -2166,14 +2417,14 @@ variables. lchown #include "lchown.h" - lchown.c + lchown.c
stat-macros.h lchown.m4
gl_FUNC_LCHOWN chown makepath #include "makepath.h" - makepath.c + makepath.c
stat-macros.h afs.m4
makepath.m4
gl_MAKEPATH alloca
chown
gettext
save-cwd
dirname
error
quote @@ -2189,14 +2440,14 @@ variables. #include "mountlist.h" mountlist.c ls-mntd-fs.m4
fstypename.m4
mountlist.m4
gl_MOUNTLIST - xalloc
unlocked-io + xalloc path-concat #include "path-concat.h" path-concat.c dos.m4
path-concat.m4
gl_PATH_CONCAT - strdup
xalloc
dirname + xalloc
dirname pathname @@ -2234,6 +2485,20 @@ variables. xalloc + utimecmp + #include "utimecmp.h" + utimecmp.c + utimecmp.m4
gl_UTIMECMP + hash
timespec
utimens
xalloc + + + utimens + #include "utimens.h" + utimens.c + utimens.m4
utimes.m4
gl_UTIMENS + timespec + + xgetcwd #include "xgetcwd.h" xgetcwd.c @@ -2328,7 +2593,7 @@ variables. #include "closeout.h" closeout.c closeout.m4
gl_CLOSEOUT - unlocked-io
gettext
error
quotearg
fpending
exitfail + gettext
error
quotearg
fpending
exitfail stdio-safer @@ -2339,17 +2604,17 @@ variables. getpass - --- + #include "getpass.h" getpass.c getpass.m4
gl_FUNC_GETPASS - unlocked-io
getline
stdbool + getline
stdbool getpass-gnu - --- + #include "getpass.h" getpass.c getpass.m4
gl_FUNC_GETPASS_GNU - unlocked-io
getline + getline
stdbool

Users and groups

@@ -2394,7 +2659,7 @@ variables. #include "userspec.h" userspec.c userspec.m4
gl_USERSPEC - alloca
posixver
xalloc
xstrtol
strdup
gettext + posixver
xalloc
xstrtol
strdup
gettext

Date and time

@@ -2432,7 +2697,14 @@ variables. #include "posixtm.h" posixtm.c posixtm.m4
gl_POSIXTM - mktime
unlocked-io + mktime + + + xnanosleep + #include "xnanosleep.h" + xnanosleep.c + --- + timespec
xalloc

Networking functions

@@ -2456,7 +2728,7 @@ variables. #include "xgethostname.h" xgethostname.c --- - gethostname
xalloc
error
exit + gethostname
xalloc canon-host @@ -2554,10 +2826,10 @@ variables. yesno - --- + #include "yesno.h" yesno.c yesno.m4
gl_YESNO - unlocked-io
rpmatch + rpmatch ucs4-utf8 @@ -2669,7 +2941,7 @@ variables. #include "argp.h" argp-ba.c
argp-eexst.c
argp-fmtstream.c
argp-fmtstream.h
argp-fs-xinl.c
argp-help.c
argp-namefrob.h
argp-parse.c
argp-pv.c
argp-pvh.c
argp-xinl.c argp.m4
gl_ARGP - alloca
getopt
strchrnul
sysexits
mempcpy
strndup
restrict
strcase + alloca
getopt
strchrnul
sysexits
mempcpy
strndup
restrict
strcase
extensions argz @@ -2697,7 +2969,7 @@ variables. #include "error.h" error.c error.m4
strerror_r.m4
gl_ERROR - unlocked-io
gettext + gettext extensions @@ -2707,13 +2979,6 @@ variables. --- - fatal - #include "fatal.h" - fatal.c - fatal.m4
gl_FATAL - error
unlocked-io
exit - - getdomainname #include "getdomainname.h" getdomainname.c @@ -2746,7 +3011,7 @@ variables. --- getusershell.c getusershell.m4
gl_PREREQ_GETUSERSHELL - xalloc
unlocked-io + xalloc physmem @@ -2767,7 +3032,7 @@ variables. #include "progname.h" progname.c --- - stdbool + --- quotearg @@ -2788,7 +3053,7 @@ variables. #include "readutmp.h" readutmp.c readutmp.m4
gl_READUTMP - xalloc
unlocked-io + xalloc sig2str @@ -2825,6 +3090,7 @@ variables. m4/rmdir-errno.m4 m4/search-libs.m4 m4/st_dm_mode.m4 +m4/uintptr_t.m4 m4/unlink-busy.m4 m4/uptime.m4 @@ -2840,6 +3106,6 @@ variables.
  • A testsuite
    - Generated from MODULES.html.sh on 22 June 2004. + Generated from MODULES.html.sh on 30 October 2004.