cpio.h(1) cpio archive values

SYNOPSIS

#include <cpio.h>

DESCRIPTION

Values needed by the c_mode field of the cpio archive format are described as follows:

NameDescription    Value (Octal)  
C_IRUSRRead by owner.    0000400  
C_IWUSRWrite by owner.    0000200  
C_IXUSRExecute by owner.    0000100  
C_IRGRPRead by group.    0000040  
C_IWGRPWrite by group.    0000020  
C_IXGRPExecute by group.    0000010  
C_IROTHRead by others.    0000004  
C_IWOTHWrite by others.    0000002  
C_IXOTHExecute by others.    0000001  
C_ISUIDSet user ID.    0004000  
C_ISGIDSet group ID.    0002000  
C_ISVTXOn directories, restricted deletion flag.    0001000  
C_ISDIRDirectory.    0040000  
C_ISFIFOFIFO.    0010000  
C_ISREGRegular file.    0100000  
C_ISBLKBlock special.    0060000  
C_ISCHRCharacter special.    0020000  
C_ISCTGReserved.    0110000  
C_ISLNKSymbolic link.    0120000  
C_ISSOCKSocket.    0140000  

The header shall define the symbolic constant:


MAGIC    "070707"

The following sections are informative.

APPLICATION USAGE

None.

RATIONALE

None.

FUTURE DIRECTIONS

None.

COPYRIGHT

Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html .