source: trunk/minix/commands/autil/arch.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 506 bytes
Line 
1/* $Id: arch.h,v 1.1 2005/06/23 09:50:54 philip Exp $ */
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
7#ifndef __ARCH_H_INCLUDED
8#define __ARCH_H_INCLUDED
9
10#define ARMAG 0177545
11#define AALMAG 0177454
12
13struct ar_hdr {
14 char ar_name[14];
15 long ar_date;
16 char ar_uid;
17 char ar_gid;
18 short ar_mode;
19 long ar_size;
20};
21
22#define AR_TOTAL 26
23#define AR_SIZE 22
24
25#endif /* __ARCH_H_INCLUDED */
Note: See TracBrowser for help on using the repository browser.