The new tar for busybox is now done, and works just fine

for extracting files.  Creation of tarballs is next...
 -Erik
This commit is contained in:
Erik Andersen
2000-03-24 00:54:46 +00:00
parent e454fb68a3
commit 1ad302ac90
12 changed files with 627 additions and 1876 deletions

View File

@@ -90,6 +90,11 @@
#define DISP_DIRNAME 128 /* show directory name (for internal use) */
#define DIR_RECURSE 256 /* -R (not yet implemented) */
#ifndef MAJOR
#define MAJOR(dev) (((dev)>>8)&0xff)
#define MINOR(dev) ((dev)&0xff)
#endif
static unsigned char display_fmt = FMT_AUTO;
static unsigned short opts = 0;
static unsigned short column = 0;