home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume4 / match1.2 / match.h < prev    next >
C/C++ Source or Header  |  1986-11-30  |  472b  |  15 lines

  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 PSIZEDEF 1024 /* default storage for patterns from a tty */
  7. #define min(x,y) ((x) < (y) ? (x) : (y))
  8. #define max(x,y) ((x) > (y) ? (x) : (y))
  9. struct PattDesc {
  10.     char *Pattern;
  11.     int PatLen; /* pattern length */
  12.     char *Start; /* starting position of search (at beginning of pattern) */
  13.     int Success; /* true when pattern found */
  14. };
  15.