# HG changeset patch # User Jim Meyering # Date 963655058 0 # Node ID 20af8e379df8624683ff1868134cb14b8091225e # Parent 2326ac681ccc29746cec25810a64e27314d15c7b *** empty log message *** diff --git a/lib/ChangeLog b/lib/ChangeLog --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,9 @@ +2000-07-15 Jim Meyering + + * 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 From a suggestion by Bruno Haible. diff --git a/lib/quote.h b/lib/quote.h 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);