#ifndef STUDENT_H #define STUDENT_H struct Student; struct Student* new_student(char* name, int); void change_name(struct Student*, char*); #endif