Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(285)

Side by Side Diff: fusl/include/tar.h

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/include/syslog.h ('k') | fusl/include/termios.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef _TAR_H
2 #define _TAR_H
3
4 #define TSUID 04000
5 #define TSGID 02000
6 #define TSVTX 01000
7 #define TUREAD 00400
8 #define TUWRITE 00200
9 #define TUEXEC 00100
10 #define TGREAD 00040
11 #define TGWRITE 00020
12 #define TGEXEC 00010
13 #define TOREAD 00004
14 #define TOWRITE 00002
15 #define TOEXEC 00001
16
17 #define REGTYPE '0'
18 #define AREGTYPE '\0'
19 #define LNKTYPE '1'
20 #define SYMTYPE '2'
21 #define CHRTYPE '3'
22 #define BLKTYPE '4'
23 #define DIRTYPE '5'
24 #define FIFOTYPE '6'
25 #define CONTTYPE '7'
26
27 #define TMAGIC "ustar"
28 #define TMAGLEN 6
29
30 #define TVERSION "00"
31 #define TVERSLEN 2
32
33 #endif
OLDNEW
« no previous file with comments | « fusl/include/syslog.h ('k') | fusl/include/termios.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698