home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume5 / rsed / globals.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-03  |  834 b   |  30 lines

  1.  
  2. /*
  3.  * This code copyright 1988 by Doug Davis (doug@letni.lawnet.com) 
  4.  *  You are free to modify, hack, fold, spindle, or mutlate this code in
  5.  *  any maner provided you give credit where credit is due and don't pretend
  6.  *  you wrote it.
  7.  *  If you do my lawyers (and I have a lot of lawyers) will teach you a lesson
  8.  *  in copyright law that you will never ever forget.
  9.  */
  10. #include "defs.h"
  11.  
  12. FILE    *EditFile;
  13. LINE    *current    = (LINE *) NULL;
  14. LINE    *find_work    = (LINE *) NULL;
  15. LINE    *l_end        = (LINE *) NULL;
  16. LINE    *l_start    = (LINE *) NULL; 
  17. char    *Bottom="Bottom of file.";
  18. char    *Eof="Search ending, bottom of file.";
  19. char    *Progname;
  20. char    *Top="Top of file.";
  21. char    *find_string = NULL;
  22. char    Dots        = 'N';
  23. char    WriteOnQuit    = 'N';
  24. char    buf[BUFSIZ];
  25. int    Debug;
  26. long    CurrentLine;
  27. long    NumberLines;
  28. long    find_line = 1L;
  29. char    *HelpName=WSEDHELP;
  30.