Given the following definition of a StudentRecord and #define's:

typedef struct {
	char 		name[MAX_NAME_LEN];
	int		stID;
	double		cse142Grade;
} StudentRecord;

#define	LESS		-1
#define	EQUAL		0
#define	GREATER		1

Write a function which: