1: #define FIRSTCHAR ' '
2: #define MAXCHAR 0377
3: #define MAXBUFF 8192
4: #define MAXSIZE 100
5: #define MAXPATS 100 /* max number of patterns */
6: #define min(x,y) (x) < (y) ? (x) : (y)
7: #define max(x,y) (x) > (y) ? (x) : (y)
8: struct PattDesc {
9: int *Skip1, *Skip2; /* pointers to skip tables */
10: char *Pattern;
11: int PatLen; /* pattern length */
12: char *Start;
13: /* starting position of search (at beginning of pattern) */
14: int Success; /* true when pattern found */
15: };
Defined struct's
Defined macros
max
defined in line
7; used 1 times
min
defined in line
6; used 4 times
Usage of this include