1#define YES 1
2#define NO 0
3
4/*	globals for match array	*/
5
6#ifndef XTERNAL
7int maxv, max0, max1;		/* best match values */
8int min0, min1;			/* left end of match */
9int minc, maxc;			/* consensus pointers */
10int mins;
11
12char *seqc0, *seqc1;	/* arrays for the consensus sequence */
13int salloc=0;		/* flag for initseq */
14#endif
15