summaryrefslogtreecommitdiffstats
path: root/initrd/tar.h
blob: 5325a51e4b0a4bb24c6736716ab872de88a13702 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef JOVE_INITRD_TAR_H
#define JOVE_INITRD_TAR_H 1

struct tar_block { char data[512]; };

typedef struct tar_header {
    char name[100];
    char mode[8];
    char owner[8];
    char group[8];
    char size[12];
    char modified[12];
    char checksum[8];
    char link;
    char linkname[100];
} tar_header_t;

#endif