10 lines
338 B
C++
10 lines
338 B
C++
#include <string>
|
|
|
|
using std::string;
|
|
|
|
// list the contents of the specified tar file
|
|
// bool tarlist( char *tarfile, char *destdir, bool verbose );
|
|
|
|
// extract the specified tar file into the specified destination
|
|
// directory
|
|
extern "C" void tarextract( char *tarfile, char *destdir, int verbose, void (*step)(void*,int), void *data );
|