home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume14 / jove4.9 / part01 / re.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-25  |  874 b   |  22 lines

  1. /***************************************************************************
  2.  * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE *
  3.  * is provided to you without charge, and with no warranty.  You may give  *
  4.  * away copies of JOVE, including sources, provided that this notice is    *
  5.  * included in all the files.                                              *
  6.  ***************************************************************************/
  7.  
  8. #define NALTS    10    /* number of alternate search strings */
  9.  
  10. extern char    searchstr[128],
  11.         compbuf[128],        /* global default compbuf */
  12.         rep_search[128],    /* replace search string */
  13.         rep_str[128],        /* contains replacement string */
  14.         *cur_compb,        /* usually points at compbuf */
  15.         REbuf[LBSIZE],        /* points at line we're scanning */
  16.         *alternates[NALTS];
  17.  
  18. extern int    REdirection,
  19.         REeom,
  20.         REbom,
  21.         REalt_num;
  22.