You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* Typed in by Richard */
|
|
/* minor changes for linux */
|
|
#ifndef _AR_H
|
|
#define _AR_H
|
|
|
|
#define ARMAG "!<arch>\n"
|
|
#define SARMAG 8
|
|
#define ARFMAG "`\n"
|
|
|
|
struct ar_hdr {
|
|
char ar_name[16],
|
|
ar_date[12],
|
|
ar_uid[6],
|
|
ar_gid[6],
|
|
ar_mode[8],
|
|
ar_size[10],
|
|
ar_fmag[2];
|
|
};
|
|
|
|
#endif /* _AR_H */
|