home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / utility / patch.arc / COMMON.H < prev   
C/C++ Source or Header  |  1988-07-26  |  4KB  |  175 lines

  1. /* $Header: common.h,v 2.0.1.2 88/06/22 20:44:53 lwall Locked $
  2.  *
  3.  * $Log:    common.h,v $
  4.  * Revision 2.0.1.2  88/06/22  20:44:53  lwall
  5.  * patch12: sprintf was declared wrong
  6.  * 
  7.  * Revision 2.0.1.1  88/06/03  15:01:56  lwall
  8.  * patch10: support for shorter extensions.
  9.  * 
  10.  * Revision 2.0  86/09/17  15:36:39  lwall
  11.  * Baseline for netwide release.
  12.  * 
  13.  */
  14.  
  15. #define DEBUGGING
  16.  
  17. #define VOIDUSED 7
  18. #include "config.h"
  19.  
  20. /* shut lint up about the following when return value ignored */
  21.  
  22. #define Signal (void)signal
  23. #define Unlink (void)unlink
  24. #define Lseek (void)lseek
  25. #define Fseek (void)fseek
  26. #define Fstat (void)fstat
  27. #define Pclose (void)pclose
  28. #define Close (void)close
  29. #define Fclose (void)fclose
  30. #define Fflush (void)fflush
  31. #define Sprintf (void)sprintf
  32. #define Mktemp (void)mktemp
  33. #define Strcpy (void)strcpy
  34. #define Strcat (void)strcat
  35.  
  36. #include <stdio.h>
  37. #include <assert.h>
  38.  
  39. #ifdef atarist
  40. #include <types.h>
  41. #include <stat.h>
  42. #else
  43. #include <sys/types.h>
  44. #include <sys/stat.h>
  45. #endif
  46.  
  47. #include <ctype.h>
  48. #include <signal.h>
  49.  
  50. /* constants */
  51.  
  52. #define TRUE (1)
  53. #define FALSE (0)
  54.  
  55. #define MAXHUNKSIZE 100000        /* is this enough lines? */
  56. #define INITHUNKMAX 125            /* initial dynamic allocation size */
  57. #define MAXLINELEN 1024
  58. #define BUFFERSIZE 1024
  59. #define SCCSPREFIX "s."
  60. #define GET "get -e %s"
  61. #define RCSSUFFIX ",v"
  62. #define CHECKOUT "co -l %s"
  63.  
  64. #ifdef FLEXFILENAMES
  65. #define ORIGEXT ".orig"
  66. #define REJEXT ".rej"
  67. #else
  68. #define ORIGEXT "~"
  69. #define REJEXT "#"
  70. #endif
  71.  
  72. /* handy definitions */
  73.  
  74. #define Null(t) ((t)0)
  75. #define Nullch Null(char *)
  76. #define Nullfp Null(FILE *)
  77. #define Nulline Null(LINENUM)
  78.  
  79. #define Ctl(ch) ((ch) & 037)
  80.  
  81. #define strNE(s1,s2) (strcmp(s1, s2))
  82. #define strEQ(s1,s2) (!strcmp(s1, s2))
  83. #define strnNE(s1,s2,l) (strncmp(s1, s2, l))
  84. #define strnEQ(s1,s2,l) (!strncmp(s1, s2, l))
  85.  
  86. /* typedefs */
  87.  
  88. typedef char bool;
  89. typedef long LINENUM;            /* must be signed */
  90. typedef unsigned MEM;            /* what to feed malloc */
  91.  
  92. /* globals */
  93.  
  94. EXT int Argc;                /* guess */
  95. EXT char **Argv;
  96. EXT int Argc_last;            /* for restarting plan_b */
  97. EXT char **Argv_last;
  98.  
  99. EXT struct stat filestat;        /* file statistics area */
  100. EXT int filemode INIT(0644);
  101.  
  102. EXT char buf[MAXLINELEN];        /* general purpose buffer */
  103. EXT FILE *ofp INIT(Nullfp);        /* output file pointer */
  104. EXT FILE *rejfp INIT(Nullfp);        /* reject file pointer */
  105.  
  106. EXT bool using_plan_a INIT(TRUE);    /* try to keep everything in memory */
  107. EXT bool out_of_mem INIT(FALSE);    /* ran out of memory in plan a */
  108.  
  109. #define MAXFILEC 2
  110. EXT int filec INIT(0);            /* how many file arguments? */
  111. EXT char *filearg[MAXFILEC];
  112. EXT bool ok_to_create_file INIT(FALSE);
  113. EXT char *bestguess INIT(Nullch);    /* guess at correct filename */
  114.  
  115. EXT char *outname INIT(Nullch);
  116. EXT char rejname[128];
  117.  
  118. EXT char *origext INIT(Nullch);
  119. EXT char *origprae INIT(Nullch);
  120.  
  121. #ifdef atarist
  122. EXT char TMPOUTNAME[] INIT("patchoXXXXXX.tmp");
  123. EXT char TMPINNAME[] INIT("patchiXXXXXX.tmp");    /* might want /usr/tmp here */
  124. EXT char TMPREJNAME[] INIT("patchrXXXXXX.tmp");
  125. EXT char TMPPATNAME[] INIT("patchpXXXXXX.tmp");
  126. #else
  127. EXT char TMPOUTNAME[] INIT("/tmp/patchoXXXXXX");
  128. EXT char TMPINNAME[] INIT("/tmp/patchiXXXXXX");    /* might want /usr/tmp here */
  129. EXT char TMPREJNAME[] INIT("/tmp/patchrXXXXXX");
  130. EXT char TMPPATNAME[] INIT("/tmp/patchpXXXXXX");
  131. #endif
  132.  
  133. EXT bool toutkeep INIT(FALSE);
  134. EXT bool trejkeep INIT(FALSE);
  135.  
  136. EXT LINENUM last_offset INIT(0);
  137. #ifdef DEBUGGING
  138. EXT int debug INIT(0);
  139. #endif
  140. EXT LINENUM maxfuzz INIT(2);
  141. EXT bool force INIT(FALSE);
  142. EXT bool verbose INIT(TRUE);
  143. EXT bool reverse INIT(FALSE);
  144. EXT bool noreverse INIT(FALSE);
  145. EXT bool skip_rest_of_patch INIT(FALSE);
  146. EXT int strippath INIT(957);
  147. EXT bool canonicalize INIT(FALSE);
  148.  
  149. #define CONTEXT_DIFF 1
  150. #define NORMAL_DIFF 2
  151. #define ED_DIFF 3
  152. #define NEW_CONTEXT_DIFF 4
  153. EXT int diff_type INIT(0);
  154.  
  155. EXT bool do_defines INIT(FALSE);    /* patch using ifdef, ifndef, etc. */
  156. EXT char if_defined[128];        /* #ifdef xyzzy */
  157. EXT char not_defined[128];        /* #ifndef xyzzy */
  158. EXT char else_defined[] INIT("#else\n");/* #else */
  159. EXT char end_defined[128];        /* #endif xyzzy */
  160.  
  161. EXT char *revision INIT(Nullch);    /* prerequisite revision, if any */
  162.  
  163. char *malloc();
  164. char *realloc();
  165. char *strcpy();
  166. char *strcat();
  167. long atol();
  168. long lseek();
  169. char *mktemp();
  170. #ifdef CHARSPRINTF
  171. char *sprintf();
  172. #else
  173. int sprintf();
  174. #endif
  175.