I have written a function where I have to use merge sort. My program is due Monday. Please, if anyone can help me out. Here is the code, plus I have declared a struct which I am using.
Code:
typedef struct restaurant
{
	char name[STRING];
	int code;
	char food;
	int entree;
	float high_cost;
	float low_cost;
	float distance;
	char children;
	char senior;
	int age;
...