1987-03-10 09:24:02 +00:00
|
|
|
/* $Header$ */
|
1987-03-09 21:20:21 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1984-08-23 13:00:32 +00:00
|
|
|
#define ARMAG 0177545
|
1985-06-10 11:28:06 +00:00
|
|
|
#define AALMAG 0177454
|
|
|
|
|
1984-08-23 13:00:32 +00:00
|
|
|
struct ar_hdr {
|
|
|
|
char ar_name[14];
|
|
|
|
long ar_date;
|
|
|
|
char ar_uid;
|
|
|
|
char ar_gid;
|
|
|
|
int ar_mode;
|
|
|
|
long ar_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define AR_TOTAL 26
|
|
|
|
#define AR_SIZE 22
|