00001 /* $Header: /opt/proj/minix/cvsroot/src/commands/aal/arch.h,v 1.1.1.1 2005/04/21 14:53:57 beng Exp $ */ 00002 /* 00003 * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands. 00004 * See the copyright notice in the ACK home directory, in the file "Copyright". 00005 */ 00006 00007 #ifndef __ARCH_H_INCLUDED 00008 #define __ARCH_H_INCLUDED 00009 00010 #define ARMAG 0177545 00011 #define AALMAG 0177454 00012 00013 struct ar_hdr { 00014 char ar_name[14]; 00015 long ar_date; 00016 char ar_uid; 00017 char ar_gid; 00018 short ar_mode; 00019 long ar_size; 00020 }; 00021 00022 #define AR_TOTAL 26 00023 #define AR_SIZE 22 00024 00025 #endif /* __ARCH_H_INCLUDED */
1.4.6