~ubuntu-branches/ubuntu/warty/agrep/warty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* test the conflicts between options */
#include <stdio.h>

extern int FILENAMEONLY, APPROX, PAT_FILE, COUNT, INVERSE, BESTMATCH;
extern FILEOUT;
extern REGEX;
extern DELIMITER;
extern WHOLELINE;
extern LINENUM;
extern I, S, DD;
extern JUMP;
extern char Progname[32];

compat()
{
int i, j, k;
	if(BESTMATCH)  if(COUNT || FILENAMEONLY || APPROX || PAT_FILE) {
		BESTMATCH = 0;
		fprintf(stderr, "WARNING!!! -B option ignored when -c, -l, -f, or -# is on\n", Progname);
	}
	if(PAT_FILE)   {
		if(APPROX)  {
			fprintf(stderr, "WARNING!!!  approximate matching is not supported with -f option\n");
		}
/*
		if(INVERSE) {
			fprintf(stderr, "%s: -f and -v are not compatible\n", Progname);
			exit(2);
		}
*/
		if(LINENUM) {
			fprintf(stderr, "%s: -f and -n are not compatible\n", Progname);
			exit(2);
		}
		if(DELIMITER) {
			fprintf(stderr, "%s: -f and -d are not compatible\n", Progname);
			exit(2);
		}
	}
	if(JUMP) {
		if(REGEX) {
			fprintf(stderr, "WARNING!!! -D#, -I#, or -S# option is ignored for regular expression pattern\n");
			JUMP = 0;
		}
		if(I == 0 || S == 0 || DD == 0) {
			fprintf(stderr, "%s: the error cost cannot be 0\n", Progname);
			exit(2);
		}
	}
	if(DELIMITER) {
		if(WHOLELINE) {
			fprintf(stderr, "%s: -d and -x is not compatible\n", Progname);
			exit(2);
		}
	}

}