#include #include #include "types.h" #include "students.h" #include "enrolls.h" Snodeptr sAlloc(void) { return (Snodeptr) malloc(sizeof(struct snode)); } void makenullStudents(Snodeptr *students) { } int memberStudents(struct studentType x, Snodeptr students, Snodeptr *s) { return 0; } int insertStudents(struct studentType x, Snodeptr students) { return 0; } int deleteStudents(struct studentType x, Snodeptr students, Cnodeptr courses) { return 0; } void printStudents(Snodeptr students) { }