repo.or.cz
/
mascara-docs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* tiny
[mascara-docs.git]
/
compilers
/
bcc
/
linux86-0.16.17
/
libc
/
include
/
ar.h
blob
c6083717dc28eb7b11e5e5cd45ccc4620fc3563f
1
#ifndef __AR_H
2
#define __AR_H
3
4
#define ARMAG
"!<arch>
\n
"
5
#define SARMAG 8
6
#define ARFMAG
"`
\n
"
7
8
struct
ar_hdr
{
9
char
ar_name
[
16
],
10
ar_date
[
12
],
11
ar_uid
[
6
],
12
ar_gid
[
6
],
13
ar_mode
[
8
],
14
ar_size
[
10
],
15
ar_fmag
[
2
];
16
};
17
18
#endif
/* __AR_H */