Files
2026-03-22 17:40:44 +08:00

10 lines
150 B
C

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