]> git.lizzy.rs Git - plan9front.git/blob - sys/include/ape/ar.h
libsec: implement elliptic curve group operations in jacobian coordinate system
[plan9front.git] / sys / include / ape / ar.h
1 #ifndef __AR_H
2 #define __AR_H
3 #ifndef _RESEARCH_SOURCE
4    This header file is not defined in ANSI or POSIX
5 #endif
6
7 #define ARMAG   "!<arch>\n"
8 #define SARMAG  8
9
10 #define ARFMAG  "`\n"
11
12 struct  ar_hdr
13 {
14         char    ar_name[16];
15         char    ar_date[12];
16         char    ar_uid[6];
17         char    ar_gid[6];
18         char    ar_mode[8];
19         char    ar_size[10];
20         char    ar_fmag[2];
21 };
22 #define SAR_HDR 60
23
24 #endif