home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / sozobon / scsrc20 / tools / crossar.h < prev    next >
C/C++ Source or Header  |  1991-02-22  |  731b  |  27 lines

  1.  
  2. /*
  3.  * Copyright (c) 1991 by Sozobon, Limited.  Author: Johann Ruegg
  4.  *
  5.  * Permission is granted to anyone to use this software for any purpose
  6.  * on any computer system, and to redistribute it freely, with the
  7.  * following restrictions:
  8.  * 1) No charge may be made other than reasonable charges for reproduction.
  9.  * 2) Modified versions must be clearly marked as such.
  10.  * 3) The authors are not responsible for any harmful consequences
  11.  *    of using this software, even if they result from defects in it.
  12.  */
  13.  
  14. #define ARMAG1    0xff65
  15. #define ARMAG2    0xff66
  16.  
  17. struct ar_hdr {
  18.     char    ar_name[14];
  19.     short    ar_date[2];
  20.     char    ar_uid, ar_gid;
  21.     short    ar_mode;
  22.     short    ar_size[2];
  23.     short    ar_fill;
  24. };
  25.  
  26. #define ARHSZ    28
  27.