repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
preparing for release of alpha.0.1
[Samba.git]
/
source
/
include
/
clitar.h
blob
2305fceeec77562ddb892118806b0b9bec78f389
1
2
#define TBLOCK 512
3
#define NAMSIZ 100
4
union
hblock
{
5
char
dummy
[
TBLOCK
];
6
struct
header
{
7
char
name
[
NAMSIZ
];
8
char
mode
[
8
];
9
char
uid
[
8
];
10
char
gid
[
8
];
11
char
size
[
12
];
12
char
mtime
[
12
];
13
char
chksum
[
8
];
14
char
linkflag
;
15
char
linkname
[
NAMSIZ
];
16
}
dbuf
;
17
};