arch.h 460 B

12345678910111213141516171819202122232425
  1. /* $Id$ */
  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. #ifndef __ARCH_H_INCLUDED
  7. #define __ARCH_H_INCLUDED
  8. #define ARMAG 0177545
  9. #define AALMAG 0177454
  10. struct ar_hdr {
  11. char ar_name[14];
  12. long ar_date;
  13. char ar_uid;
  14. char ar_gid;
  15. short ar_mode;
  16. long ar_size;
  17. };
  18. #define AR_TOTAL 26
  19. #define AR_SIZE 22
  20. #endif /* __ARCH_H_INCLUDED */