From: Jim Meyering Date: Sat, 15 Jul 2000 09:57:38 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: FILEUTILS-4_0x~59 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=48c6c83ef6544ad2146717bebfabdc0bace55746;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 61bb36fb9d..384d39bdd9 100644 --- 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 index 0000000000..96549b76ba --- /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);