home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / include / tar.h < prev    next >
C/C++ Source or Header  |  1998-08-19  |  1KB  |  54 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ifndef _TAR_H
  12. #define _TAR_H
  13.  
  14. #ident    "@(#)head.usr:tar.h    1.3.1.1"
  15.  
  16. #define TMAGIC        "ustar"
  17. #define TMAGLEN        6
  18. #define TVERSION    "00"
  19. #define TVERSLEN    2
  20.  
  21. /* Typeflag field definitions.
  22. */
  23.  
  24. #define REGTYPE        '0'
  25. #define AREGTYPE    '\0'
  26. #define LNKTYPE        '1'
  27. #define SYMTYPE        '2'
  28. #define CHRTYPE        '3'
  29. #define BLKTYPE        '4'
  30. #define DIRTYPE        '5'
  31. #define FIFOTYPE    '6'
  32. #define CONTTYPE    '7'
  33. #if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)
  34. #define NAMTYPE        'A'  /* Xenix special named file */
  35. #endif /* !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)*/
  36.  
  37. /* Mode fild bit definitions.
  38. */
  39.  
  40. #define TSUID        04000
  41. #define TSGID        02000
  42. #define TSVTX        01000
  43. #define TUREAD        00400
  44. #define TUWRITE        00200
  45. #define TUEXEC        00100
  46. #define TGREAD        00040
  47. #define TGWRITE        00020
  48. #define TGEXEC        00010
  49. #define TOREAD        00004
  50. #define TOWRITE        00002
  51. #define TOEXEC        00001
  52.  
  53. #endif    /* _TAR_H */
  54.