Moortiii

student.h

Oct 29th, 2017
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. #ifndef STUDENT_H
  2. #define STUDENT_H
  3.  
  4. typedef struct {
  5.     int id;
  6.     int age;
  7.     char name[100];
  8. } student_t;
  9.  
  10. student_t * create_student();
  11. student_t * read_student_file();
  12. void print_student( student_t * student );
  13. void write_student_file( student_t * student );
  14. void show_menu();
  15.  
  16. #endif
Advertisement
Add Comment
Please, Sign In to add comment