Blame examples/minitar/README

Packit Service 1d0348
"minitar" is a minimal example of a program that uses libarchive to
Packit Service 1d0348
read/write various archive formats.  It's a more ambitious version of
Packit Service 1d0348
'untar.c' that includes compile-time options to enable/disable various
Packit Service 1d0348
features, including non-tar formats, archive creation, and automatic
Packit Service 1d0348
decompression support.
Packit Service 1d0348
Packit Service 1d0348
I use this as a test bed to check for "link pollution," ensuring that
Packit Service 1d0348
a program using libarchive does not pull in unnecessary code.
Packit Service 1d0348
Packit Service 1d0348
The "minitar" program is also a good starting point for anyone who
Packit Service 1d0348
wants to use libarchive for their own purposes, as it demonstrates
Packit Service 1d0348
basic usage of the library.