$emit(off) $repeat(2,# $$define(c,$$ife(@0,1,@1,@2)) $$define(h,$$ife(@0,2,@1,@2)) $$define(e,$$h(extern )) $$emit($$c(on,to arc.h))# /* ARC - Archive utility - $$c(ARCDATA,ARC Header) $define(tag,$$segment(@1,$$index(@1,=)+1))# $define(version,Version $tag( TED_VERSION DB =2.14), created on $tag( TED_DATE DB =02/03/86) at $tag( TED_TIME DB =22:48:29))# $undefine(tag)# $version (C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED By: Thom Henderson Description: $$h( This is the header file for the ARC archive utility. It defines global parameters and the references to the external data. , This file defines the external data storage used by the ARC archive utility. ) Language: Computer Innovations Optimizing C86 */ #include $c(,"arcs.h") $$e()int keepbak$$c( = 0); /* true if saving the old archive */ $$e()int warn$$c( = 1); /* true to print warnings */ $$e()int note$$c( = 1); /* true to print comments */ $$e()int bose$$c( = 0); /* true to be verbose */ $$e()int nocomp$$c( = 0); /* true to suppress compression */ $$e()int kludge$$c( = 0); /* kludge flag */ $$e()char *arctemp$$c( = NULL); /* arc temp file prefix */ $$e()char *password$$c( = NULL); /* encryption password pointer */ $$e()int nerrs$$c( = 0); /* number of errors encountered */ $$e()char hdrver; /* header version */ $$e()FILE *arc; /* the old archive */ $$e()FILE *new; /* the new archive */ $$e()char arcname[$$strlen]; /* storage for archive name */ $$e()char bakname[$$strlen]; /* storage for backup copy name */ $$e()char newname[$$strlen]; /* storage for new archive name */ $$e()unsigned int arcdate$$c( = 0); /* archive date stamp */ $$e()unsigned int arctime$$c( = 0); /* archive time stamp */ )#