summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-07-15 09:57:38 +0000
committerJim Meyering <jim@meyering.net>2000-07-15 09:57:38 +0000
commit48c6c83ef6544ad2146717bebfabdc0bace55746 (patch)
tree7bd83076ccd64dbc9553ea54ec51f78392ffe8e6 /lib
parent4ee7d587046b30bb6c8f5cdb0e3118317fc0df83 (diff)
downloadcoreutils-48c6c83ef6544ad2146717bebfabdc0bace55746.tar.xz
*** empty log message ***
Diffstat (limited to 'lib')
-rw-r--r--lib/ChangeLog6
-rw-r--r--lib/quote.h4
2 files changed, 10 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 61bb36fb9..384d39bdd 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,9 @@
+2000-07-15 Jim Meyering <meyering@lucent.com>
+
+ * quote.c (quote, quote_n): New file. Two functions taken verbatim
+ from tar's src/misc.c.
+ * quote.h: New file. Prototypes for same.
+
2000-07-10 Paul Eggert <eggert@twinsun.com>
From a suggestion by Bruno Haible.
diff --git a/lib/quote.h b/lib/quote.h
new file mode 100644
index 000000000..96549b76b
--- /dev/null
+++ b/lib/quote.h
@@ -0,0 +1,4 @@
+/* prototypes for quote.c */
+
+char const *quote_n (int n, char const *name);
+char const *quote (char const *name);