oops, IS_BITS_CLR_ALL() macro was wrong!
[samba.git] / source3 / include / clitar.h
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 };