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

  1. /*  ARC - Archive utility - ARCDATA
  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 file defines the external data storage used by the ARC
  11.          archive utility.
  12.  
  13.  
  14.     Language:
  15.          Computer Innovations Optimizing C86
  16. */
  17. #include <stdio.h>
  18.  
  19. int keepbak = 0;             /* true if saving the old archive */
  20. int warn = 1;                /* true to print warnings */
  21. int note = 1;                /* true to print comments */
  22. int bose = 0;                /* true to be verbose */
  23. int nocomp = 0;              /* true to suppress compression */
  24. int overlay = 0;             /* true to overlay on extract */
  25. int kludge = 0;              /* kludge flag */
  26. char *arctemp = NULL;        /* arc temp file prefix */
  27. char *password = NULL;       /* encryption password pointer */
  28. int nerrs = 0;               /* number of errors encountered */
  29.  
  30. char hdrver;                      /* header version */
  31.  
  32. FILE *arc;                        /* the old archive */
  33. FILE *new;                        /* the new archive */
  34. char arcname[100];           /* storage for archive name */
  35. char bakname[100];           /* storage for backup copy name */
  36. char newname[100];           /* storage for new archive name */
  37. unsigned int arcdate = 0;    /* archive date stamp */
  38. unsigned int arctime = 0;    /* archive time stamp */
  39. unsigned int olddate = 0;    /* old archive date stamp */
  40. unsigned int oldtime = 0;    /* old archive time stamp */
  41.  
  42.  
  43.  
  44.