home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved.
- *
- * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE
- * SANTA CRUZ OPERATION INC.
- *
- * The copyright notice above does not evidence any actual or intended
- * publication of such source code.
- */
-
- #ifndef _TAR_H
- #define _TAR_H
-
- #ident "@(#)head.usr:tar.h 1.3.1.1"
-
- #define TMAGIC "ustar"
- #define TMAGLEN 6
- #define TVERSION "00"
- #define TVERSLEN 2
-
- /* Typeflag field definitions.
- */
-
- #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'
- #if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)
- #define NAMTYPE 'A' /* Xenix special named file */
- #endif /* !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)*/
-
- /* Mode fild bit definitions.
- */
-
- #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
-
- #endif /* _TAR_H */
-