1234567891011121314151617181920212223242526 |
- /*
- * This file is part of the UCB release of Plan 9. It is subject to the license
- * terms in the LICENSE file found in the top-level directory of this
- * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
- * part of the UCB release of Plan 9, including this file, may be copied,
- * modified, propagated, or distributed except according to the terms contained
- * in the LICENSE file.
- */
- #define ARMAG "!<arch>\n"
- #define SARMAG 8
- #define ARFMAG "`\n"
- #define SARNAME 16
- struct ar_hdr
- {
- char name[SARNAME];
- char date[12];
- char uid[6];
- char gid[6];
- char mode[8];
- char size[10];
- char fmag[2];
- };
- #define SAR_HDR (SARNAME+44)
|