summaryrefslogtreecommitdiffstats
path: root/source/include/clitar.h
blob: 2305fceeec77562ddb892118806b0b9bec78f389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#define TBLOCK 512
#define NAMSIZ 100
union hblock {
  char dummy[TBLOCK];
  struct header {
    char name[NAMSIZ];
    char mode[8];
    char uid[8];
    char gid[8];
    char size[12];
    char mtime[12];
    char chksum[8];
    char linkflag;
    char linkname[NAMSIZ];
  } dbuf;
};