home *** CD-ROM | disk | FTP | other *** search
- /******************* start of original comments ********************/
- /*
- * Written by Douglas Thomson (1989/1990)
- *
- * This source code is released into the public domain.
- */
- /********************* end of original comments ********************/
-
- /*
- * New editor name: tde, the Thomson-Davis Editor.
- * Author: Frank Davis
- * Date: June 5, 1991
- *
- * This modification of Douglas Thomson's code is released into the
- * public domain, Frank Davis. You may distribute it freely.
- *
- * See "tdestr.h" for a description of these variables. (C requires global
- * variables to be declared "extern" in all modules except one. This file
- * is only included by the main "ed.c" module.)
- */
-
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- #include <conio.h>
- #ifdef __TURBOC__
- #include <stdlib.h>
- #elif __MSC__
- #include <stdlib.h>
- #if defined( toupper )
- #undef toupper
- #endif
- #endif
-
- displays g_display;
-
- status_infos g_status;
-
- boyer_moore_type bm;
-