More files.

More files.
This commit is contained in:
rsc 2004-03-25 23:08:53 +00:00
parent a27e20579c
commit 70bcc7804e
5 changed files with 1561 additions and 0 deletions

17
include/ar.h Normal file
View file

@ -0,0 +1,17 @@
#define ARMAG "!<arch>\n"
#define SARMAG 8
#define ARFMAG "`\n"
#define SARNAME 16
struct ar_hdr
{
char name[SARNAME];
char date[12];
char uid[6];
char gid[6];
char mode[8];
char size[10];
char fmag[2];
};
#define SAR_HDR (SARNAME+44)