#include #include #include "types.h" #include "students.h" #include "courses.h" #include "enrolls.h" Enodeptr eAlloc(void) { return (Enodeptr) malloc(sizeof(struct enode)); } int memberEnrolls(struct studentType x, struct courseType y, Snodeptr students, Cnodeptr courses, Enodeptr *e) { return 0; } int insertEnrolls(struct studentType x, struct courseType y, char grade, Snodeptr students, Cnodeptr courses) { return 0; } int deleteEnrolls(struct studentType x, struct courseType y, Snodeptr students, Cnodeptr courses) { return 0; } int printClassList(struct courseType x, Cnodeptr courses) { return 0; } int printTranscript(struct studentType x, Snodeptr students) { return 0; } void printEnrolls(Snodeptr students, Cnodeptr courses) { }