home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 001-099 / ff004.lzh / bm / Global.c < prev    next >
C/C++ Source or Header  |  1986-01-01  |  623b  |  14 lines

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