/*******************************************************/
/*   Master include file for most executables in WORDY */
/*   M\Cooper, PO Box 237, St. David, AZ 85630         */
/*        E-mail: thegrendel@theriver.com              */
/*     http://personal.riverusers.com/~thegrendel/     */
/*******************************************************/


#include <stdio.h>
#include <io.h>
#include <stdlib.h>
#include <string.h>
#include <dos.h>

#define COMPARISON_ERROR 1
#define MAXTESTS 50
#define MAX_WLEN 24
/*               ^^ Max word length in searches       */
#define MAX_SPAN 25

const char Wordfile[] = "word.lst";
/*File containing list of valid words.*/ 

typedef enum { FAIL, SUCCESS } Rflag;

/******************************PROTOTYPES***********************************/
Rflag l_search( char *search_word, FILE *fp );
Rflag b_search( char *search_word, FILE *fp, long left, long right );
Rflag lookup( char *test_word );

