10 lines
150 B
C
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
|