/* Spring 2023 - Lab8 - defs.h

	continuation of Lab 7
	This time, the program will consist of multiple files with each function
	from last week's lab in a separate file.
	1. printMenu.c
	2. convertCase.c
	3. printArray.c

	The students will also create a defs.h which will contain the other 
	#include statement(s), prototypes, and #define or constants.


*/


#include <stdio.h>
#include <string.h>
#include <ctype.h>

#define MAX_LINE 200
#define MAX_LINE_LEN 100

// prototypes
int printMenu();
void convertCase(char text[MAX_LINE][MAX_LINE_LEN]); 
void printArray(char text[MAX_LINE][MAX_LINE_LEN], int lines); 
void searchForWord(char allLines[MAX_LINE][MAX_LINE_LEN], int numLines); 


