repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Restore the "GPL licensing not permitted" in GLUT license headers.
[haiku.git]
/
headers
/
posix
/
tar.h
blob
434c88aa7458f9f548fdfcd0afae2fa6d755c66b
1
/*
2
* Copyright 2014 Haiku, Inc. All Rights Reserved.
3
* Distributed under the terms of the MIT License.
4
*/
5
#ifndef _TAR_H_
6
#define _TAR_H_
7
8
9
#define TMAGIC
"ustar"
10
#define TMAGLEN 6
11
#define TVERSION
"00"
12
#define TVERSLEN 2
13
14
#define REGTYPE
'0'
15
#define AREGTYPE
'\0'
16
#define LNKTYPE
'1'
17
#define SYMTYPE
'2'
18
#define CHRTYPE
'3'
19
#define BLKTYPE
'4'
20
#define DIRTYPE
'5'
21
#define FIFOTYPE
'6'
22
#define CONTTYPE
'7'
23
24
#define TSUID 04000
25
#define TGUID 02000
26
//#define TSVTX 01000
27
#define TUREAD 00400
28
#define TUWRITE 00200
29
#define TUEXEC 00100
30
#define TGREAD 00040
31
#define TGWRITE 00020
32
#define TGEXEC 00010
33
#define TOREAD 00004
34
#define TOWRITE 00002
35
#define TOEXEC 00001
36
37
38
#endif
/* _TAR_H_ */
39