You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
595 B
34 lines
595 B
#ifndef SYSROOT_TAR_H_
|
|
#define SYSROOT_TAR_H_
|
|
|
|
#define TSUID 04000
|
|
#define TSGID 02000
|
|
#define TSVTX 01000
|
|
#define TUREAD 00400
|
|
#define TUWRITE 00200
|
|
#define TUEXEC 00100
|
|
#define TGREAD 00040
|
|
#define TGWRITE 00020
|
|
#define TGEXEC 00010
|
|
#define TOREAD 00004
|
|
#define TOWRITE 00002
|
|
#define TOEXEC 00001
|
|
|
|
#define REGTYPE '0'
|
|
#define AREGTYPE '\0'
|
|
#define LNKTYPE '1'
|
|
#define SYMTYPE '2'
|
|
#define CHRTYPE '3'
|
|
#define BLKTYPE '4'
|
|
#define DIRTYPE '5'
|
|
#define FIFOTYPE '6'
|
|
#define CONTTYPE '7'
|
|
|
|
#define TMAGIC "ustar"
|
|
#define TMAGLEN 6
|
|
|
|
#define TVERSION "00"
|
|
#define TVERSLEN 2
|
|
|
|
#endif // SYSROOT_TAR_H_
|