home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c / pro14 / global.c < prev    next >
Encoding:
Text File  |  1986-04-02  |  640 b   |  12 lines

  1. /* global flags for bm */
  2. int    cFlag=0, /* true if we want only a count of matching lines */
  3.     fFlag=0, /* true if the patterns arew to come from a file */
  4.     lFlag=0, /* true if we want a list of files containing the pattern */
  5.     nFlag=0, /* true if we want the character offset of the pattern */
  6.     sFlag=0, /* true if we want silent mode */
  7.     xFlag=0, /* true if we want only lines which match entirely */
  8.  
  9.     MatchCount=0; /* count of number of times a search string was found
  10.     * in the text */
  11. char *FileName = 0;
  12.