changeset 2747:20af8e379df8

*** empty log message ***
author Jim Meyering <jim@meyering.net>
date Sat, 15 Jul 2000 09:57:38 +0000
parents 2326ac681ccc
children cc3399fa993c
files lib/ChangeLog lib/quote.h
diffstat 2 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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.
new file mode 100644
--- /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);