summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTim Kientzle <kientzle@gmail.com>2009-05-30 03:38:01 -0400
committerTim Kientzle <kientzle@gmail.com>2009-05-30 03:38:01 -0400
commite3b237261ba2de69cc93727c4a2b9de6d11348d0 (patch)
treeb17f178357d753db933d6c914692a11b9e81ee5e /examples
parent4eb60e13c4fa747fa32ca9316313ae9a33c9519e (diff)
downloadlibarchive-e3b237261ba2de69cc93727c4a2b9de6d11348d0.tar.gz
Comment tweaks; make it a little more obvious the difference
between examples/untar.c and contrib/untar.c. I should probably rename one of these. SVN-Revision: 1144
Diffstat (limited to 'examples')
-rw-r--r--examples/untar.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/examples/untar.c b/examples/untar.c
index 88f6dc26..468c1079 100644
--- a/examples/untar.c
+++ b/examples/untar.c
@@ -4,15 +4,16 @@
*/
/*
- * This is a compact tar extraction program whose primary goal is
- * small size. Statically linked, it can be under 64k, depending on
- * how cleanly factored your system libraries are. Note that this
- * uses the standard libarchive, without any special recompilation.
- * The only functional concession is that this program uses the
- * uid/gid from the archive instead of doing uname/gname lookups.
- * (Call archive_write_disk_set_standard_lookup() to enable
- * uname/gname lookups, but be aware that this can add 500k or more to
- * a static executable, depending on the system libraries.)
+ * This is a compact tar extraction program using libarchive whose
+ * primary goal is small executable size. Statically linked, it can
+ * be under 64k, depending on how cleanly factored your system
+ * libraries are. Note that this uses the standard libarchive,
+ * without any special recompilation. The only functional concession
+ * is that this program uses the uid/gid from the archive instead of
+ * doing uname/gname lookups. (Call
+ * archive_write_disk_set_standard_lookup() to enable uname/gname
+ * lookups, but be aware that this can add 500k or more to a static
+ * executable, depending on the system libraries.)
*
* To build:
* gcc -static -Wall -o untar untar.c -larchive