*** empty log message ***
authorJim Meyering <jim@meyering.net>
Sat, 15 Jul 2000 09:57:38 +0000 (09:57 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 15 Jul 2000 09:57:38 +0000 (09:57 +0000)
lib/ChangeLog
lib/quote.h [new file with mode: 0644]

index 61bb36fb9da76314d68a5596d5e9c5b6519fae30..384d39bdd9b5a19d9bba836956d6fa5c18900fd1 100644 (file)
@@ -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 (file)
index 0000000..96549b7
--- /dev/null
@@ -0,0 +1,4 @@
+/* prototypes for quote.c */
+
+char const *quote_n (int n, char const *name);
+char const *quote (char const *name);