ack/h/arch.h

26 lines
460 B
C
Raw Normal View History

1994-06-24 11:31:16 +00:00
/* $Id$ */
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".
*/
#ifndef __ARCH_H_INCLUDED
#define __ARCH_H_INCLUDED
1984-08-23 13:00:32 +00:00
#define ARMAG 0177545
#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;
1991-06-06 11:47:23 +00:00
short ar_mode;
1984-08-23 13:00:32 +00:00
long ar_size;
};
#define AR_TOTAL 26
#define AR_SIZE 22
#endif /* __ARCH_H_INCLUDED */