home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / OS2ARC_S.ZIP / ARCDATA.C < prev    next >
Text File  |  1987-10-15  |  2KB  |  50 lines

  1. /*  ARC - Archive utility - $$c(ARCDATA,ARC Header)
  2.  
  3. $define(tag,$$segment(@1,$$index(@1,=)+1))#
  4. $define(version,Version $tag(
  5. TED_VERSION DB =2.14), created on $tag(
  6. TED_DATE DB =02/03/86) at $tag(
  7. TED_TIME DB =22:48:29))#
  8. $undefine(tag)#
  9.     $version
  10.  
  11. (C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED
  12.  
  13.     By:  Thom Henderson
  14.  
  15.     Description: $$h(
  16.          This is the header file for the ARC archive utility.  It defines
  17.          global parameters and the references to the external data.
  18. ,
  19.          This file defines the external data storage used by the ARC
  20.          archive utility.
  21. )
  22.  
  23.     Language:
  24.          Computer Innovations Optimizing C86
  25. */
  26. #include <stdio.h>
  27. #include "arcs.h"
  28.  
  29. /*extern*/ int keepbak = 0;             /* true if saving the old archive */
  30. /*extern*/ int warn = 1;                /* true to print warnings */
  31. /*extern*/ int note = 1;                /* true to print comments */
  32. /*extern*/ int bose = 0;                /* true to be verbose */
  33. /*extern*/ int nocomp = 0;              /* true to suppress compression */
  34. /*extern*/ int kludge = 0;              /* kludge flag */
  35. /*extern*/ char *arctemp = NULL;        /* arc temp file prefix */
  36. /*extern*/ char *password = NULL;       /* encryption password pointer */
  37. /*extern*/ int nerrs = 0;               /* number of errors encountered */
  38.  
  39. /*extern*/ char hdrver;                      /* header version */
  40.  
  41. /*extern*/ FILE *arc;                        /* the old archive */
  42. /*extern*/ FILE *new;                        /* the new archive */
  43. /*extern*/ char arcname[_STRLEN];           /* storage for archive name */
  44. /*extern*/ char bakname[_STRLEN];           /* storage for backup copy name */
  45. /*extern*/ char newname[_STRLEN];           /* storage for new archive name */
  46. /*extern*/ unsigned int arcdate = 0;    /* archive date stamp */
  47. /*extern*/ unsigned int arctime = 0;    /* archive time stamp */
  48.  
  49.  
  50.