home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / disk / archive / nspark_1 / nspark-1.7.5 / arcfs.h < prev    next >
C/C++ Source or Header  |  1994-12-12  |  481b  |  37 lines

  1. /*
  2.  * ArcFS support
  3.  * (C) 1993 Andrew Brooks, arb@comp.lancs.ac.uk
  4.  */
  5.  
  6. #ifndef __ARCFS_H
  7. #define __ARCFS_H
  8.  
  9. #include "cproto.h"
  10.  
  11. /*
  12.  * Flag to indicate whether the current archive is ArcFS format
  13.  */
  14. extern int arcfs;
  15.  
  16.  
  17. /*
  18.  * Number of bits of compression
  19.  */
  20. extern int arcfs_maxbits;
  21.  
  22.  
  23. /*
  24.  * Original size of file being extracted
  25.  */
  26. extern long writesize;
  27. extern long crcsize;
  28.  
  29.  
  30. /*
  31.  * Read ArcFS header
  32.  */
  33. Header *arcfs_read_header P__((FILE *ifp));
  34.  
  35.  
  36. #endif /* __ARCFS_H */
  37.