diff options
Diffstat (limited to 'gl/modules')
-rw-r--r-- | gl/modules/buffer-lcm | 23 | ||||
-rw-r--r-- | gl/modules/fd-reopen | 23 | ||||
-rw-r--r-- | gl/modules/strnumcmp | 26 | ||||
-rw-r--r-- | gl/modules/xfts | 23 |
4 files changed, 95 insertions, 0 deletions
diff --git a/gl/modules/buffer-lcm b/gl/modules/buffer-lcm new file mode 100644 index 000000000..1d86f715e --- /dev/null +++ b/gl/modules/buffer-lcm @@ -0,0 +1,23 @@ +Description: +Compute a good buffer size for dealing with two files. + +Files: +lib/buffer-lcm.c +lib/buffer-lcm.h + +Depends-on: +stddef + +configure.ac: + +Makefile.am: +lib_SOURCES += buffer-lcm.c buffer-lcm.h + +Include: +"buffer-lcm.h" + +License: +GPL + +Maintainer: +Paul Eggert diff --git a/gl/modules/fd-reopen b/gl/modules/fd-reopen new file mode 100644 index 000000000..70a21c317 --- /dev/null +++ b/gl/modules/fd-reopen @@ -0,0 +1,23 @@ +Description: +Open a file to a particular file descriptor. + +Files: +lib/fd-reopen.c +lib/fd-reopen.h + +Depends-on: +fcntl-h + +configure.ac: + +Makefile.am: +lib_SOURCES += fd-reopen.c fd-reopen.h + +Include: +"fd-reopen.h" + +License: +GPL + +Maintainer: +Paul Eggert diff --git a/gl/modules/strnumcmp b/gl/modules/strnumcmp new file mode 100644 index 000000000..83f4e7c38 --- /dev/null +++ b/gl/modules/strnumcmp @@ -0,0 +1,26 @@ +Description: +Compare numeric strings. + +Files: +lib/strintcmp.c +lib/strnumcmp.c +lib/strnumcmp.h +lib/strnumcmp-in.h + +Depends-on: +inline +stddef + +configure.ac: + +Makefile.am: +lib_SOURCES += strintcmp.c strnumcmp.c strnumcmp.h + +Include: +"strnumcmp.h" + +License: +GPL + +Maintainer: +Paul Eggert diff --git a/gl/modules/xfts b/gl/modules/xfts new file mode 100644 index 000000000..335946e2f --- /dev/null +++ b/gl/modules/xfts @@ -0,0 +1,23 @@ +Description: +a wrapper for fts_open + +Files: +lib/xfts.c +lib/xfts.h + +Depends-on: +stddef + +configure.ac: + +Makefile.am: +lib_SOURCES += xfts.c xfts.h + +Include: +"xfts.h" + +License: +GPL + +Maintainer: +Jim Meyering |