commit 345522f00a4fbca5485d10437d2f105dc83dc7a4
parent d9d12434a66225ce04b0f9b14b6ef141806c53d5
Author: Drew DeVault <sir@cmpwn.com>
Date: Mon, 18 Apr 2022 14:33:02 +0200
all: add missing README files
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
7 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/fnmatch/README b/fnmatch/README
@@ -0,0 +1,4 @@
+The fnmatch module provides an implementation of fnmatch string matching as
+defined by POSIX.
+
+https://pubs.opengroup.org/onlinepubs/9699919799/functions/fnmatch.html
diff --git a/glob/README b/glob/README
@@ -0,0 +1,4 @@
+The glob module provides an implementation of file globbing compatible with the
+behavior described by POSIX.
+
+https://pubs.opengroup.org/onlinepubs/9699919799/functions/glob.html
diff --git a/linux/README b/linux/README
@@ -0,0 +1 @@
+The linux module provides support for Linux-specific platform functionality.
diff --git a/math/README b/math/README
@@ -0,0 +1,2 @@
+The math module provides implementations of common math functionality and
+support for dealing with floating point numbers.
diff --git a/temp/README b/temp/README
@@ -0,0 +1 @@
+The temp module provides support for creating temporary directories and files.
diff --git a/unix/README b/unix/README
@@ -0,0 +1,2 @@
+The unix module and its submodules provides support for functionality common to
+Unix-like systems.
diff --git a/unix/poll/README b/unix/poll/README
@@ -0,0 +1,4 @@
+unix::poll provides an interface for polling activity on file descriptors,
+compatible with the behavior defined by POSIX.
+
+https://pubs.opengroup.org/onlinepubs/9699919799/functions/poll.html