More files.
More files.
This commit is contained in:
parent
a27e20579c
commit
70bcc7804e
5 changed files with 1561 additions and 0 deletions
17
include/ar.h
Normal file
17
include/ar.h
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue