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

  1.  
  2.  
  3. /*
  4.  * Copyright (c) 1991 by Sozobon, Limited.  Author: Johann Ruegg
  5.  *
  6.  * Permission is granted to anyone to use this software for any purpose
  7.  * on any computer system, and to redistribute it freely, with the
  8.  * following restrictions:
  9.  * 1) No charge may be made other than reasonable charges for reproduction.
  10.  * 2) Modified versions must be clearly marked as such.
  11.  * 3) The authors are not responsible for any harmful consequences
  12.  *    of using this software, even if they result from defects in it.
  13.  */
  14.  
  15. #define ARMAG1    0xff65
  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.