home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / OS2ARC_S.ZIP / ARC.H < prev    next >
C/C++ Source or Header  |  1986-02-03  |  2KB  |  38 lines

  1. /*  ARC - Archive utility - ARC Header
  2.  
  3.     Version 2.14, created on 02/03/86 at 22:48:29
  4.  
  5. (C) COPYRIGHT 1985 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 kludge;              /* kludge flag */
  25. extern char *arctemp;        /* arc temp file prefix */
  26. extern char *password;       /* encryption password pointer */
  27. extern int nerrs;               /* number of errors encountered */
  28.  
  29. extern char hdrver;                      /* header version */
  30.  
  31. extern FILE *arc;                        /* the old archive */
  32. extern FILE *new;                        /* the new archive */
  33. extern char arcname[100];           /* storage for archive name */
  34. extern char bakname[100];           /* storage for backup copy name */
  35. extern char newname[100];           /* storage for new archive name */
  36. extern unsigned int arcdate;    /* archive date stamp */
  37. extern unsigned int arctime;    /* archive time stamp */
  38.