home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / COMPRESS / ARC520S.ZIP / ARC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1986-10-24  |  1.7 KB  |  41 lines

  1. /*  ARC - Archive utility - ARC Header
  2.  
  3.     Version 2.16, created on 10/24/86 at 14:54:17
  4.  
  5. (C) COPYRIGHT 1985,86 by System Enhancement Associates; ALL RIGHTS RESERVED
  6.  
  7.     By:  Thom Henderson
  8.  
  9.     Description: 
  10.          This is the header file for the ARC archive utility.  It defines
  11.          global parameters and the references to the external data.
  12.  
  13.  
  14.     Language:
  15.          Computer Innovations Optimizing C86
  16. */
  17. #include "arcs.h"
  18.  
  19. extern int keepbak;             /* true if saving the old archive */
  20. extern int warn;                /* true to print warnings */
  21. extern int note;                /* true to print comments */
  22. extern int bose;                /* true to be verbose */
  23. extern int nocomp;              /* true to suppress compression */
  24. extern int overlay;             /* true to overlay on extract */
  25. extern int kludge;              /* kludge flag */
  26. extern char *arctemp;        /* arc temp file prefix */
  27. extern char *password;       /* encryption password pointer */
  28. extern int nerrs;               /* number of errors encountered */
  29.  
  30. extern char hdrver;                      /* header version */
  31.  
  32. extern FILE *arc;                        /* the old archive */
  33. extern FILE *new;                        /* the new archive */
  34. extern char arcname[100];           /* storage for archive name */
  35. extern char bakname[100];           /* storage for backup copy name */
  36. extern char newname[100];           /* storage for new archive name */
  37. extern unsigned int arcdate;    /* archive date stamp */
  38. extern unsigned int arctime;    /* archive time stamp */
  39. extern unsigned int olddate;    /* old archive date stamp */
  40. extern unsigned int oldtime;    /* old archive time stamp */
  41.