source: trunk/libs/newlib/src/newlib/libc/include/tar.h @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 1.4 KB
Line 
1/*
2 * tar.h
3 */
4
5#ifndef _TAR_H
6#define _TAR_H
7
8#include <sys/features.h>
9
10/* General definitions */
11#define TMAGIC          "ustar" /* ustar plus null byte. */
12#define TMAGLEN         6       /* Length of the above. */
13#define TVERSION        "00"    /* 00 without a null byte. */
14#define TVERSLEN        2       /* Length of the above. */
15
16/* Typeflag field definitions */
17#define REGTYPE         '0'     /* Regular file. */
18#define AREGTYPE        '\0'    /* Regular file. */
19#define LNKTYPE         '1'     /* Link. */
20#define SYMTYPE         '2'     /* Symbolic link. */
21#define CHRTYPE         '3'     /* Character special. */
22#define BLKTYPE         '4'     /* Block special. */
23#define DIRTYPE         '5'     /* Directory. */
24#define FIFOTYPE        '6'     /* FIFO special. */
25#define CONTTYPE        '7'     /* Reserved. */
26
27/* Mode field bit definitions (octal) */
28#define TSUID           04000   /* Set UID on execution. */
29#define TSGID           02000   /* Set GID on execution. */
30#if __XSI_VISIBLE || __POSIX_VISIBLE < 200112
31#define TSVTX           01000   /* On directories, restricted deletion flag. */
32#endif
33#define TUREAD          00400   /* Read by owner. */
34#define TUWRITE         00200   /* Write by owner. */
35#define TUEXEC          00100   /* Execute/search by owner. */
36#define TGREAD          00040   /* Read by group. */
37#define TGWRITE         00020   /* Write by group. */
38#define TGEXEC          00010   /* Execute/search by group. */
39#define TOREAD          00004   /* Read by other. */
40#define TOWRITE         00002   /* Write by other. */
41#define TOEXEC          00001   /* Execute/search by other. */
42
43#endif
Note: See TracBrowser for help on using the repository browser.