Initial version imported to CVS
[Samba.git] / source / include / clitar.h
blob2305fceeec77562ddb892118806b0b9bec78f389
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;