arch.h 376 B

12345678910111213141516171819
  1. /* $Header$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. #define ARMAG 0177545
  7. #define AALMAG 0177454
  8. struct ar_hdr {
  9. char ar_name[14];
  10. long ar_date;
  11. char ar_uid;
  12. char ar_gid;
  13. int ar_mode;
  14. long ar_size;
  15. };
  16. #define AR_TOTAL 26
  17. #define AR_SIZE 22