arch.h 361 B

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