-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmember.h
More file actions
38 lines (26 loc) · 685 Bytes
/
member.h
File metadata and controls
38 lines (26 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef __MEMBER_H__
#define __MEMBER_H__
typedef struct student_node{
int userid;
char name[10];
char address[80];
char phone[14];
}student;
void readMemberData(void);
void showMenu(void);
void returnToMenu(void);
void printAll(void);
void printPage(int curPageNum, int lastPageNum);
void addNewMember(void);
void phoneFormCheck(int memberId);
void deleteMember(int memberIdx);
void editMember(int memberIdx);
void searchMember(void);
void printCertainMember(int memberNum);
void searchSubmenu(int memberIdx);
void saveData(void);
void exitProgram(void);
void gotoxy(int x, int y);
void memoryExtension();
void textcolor(unsigned short color);
#endif // !__MEMBER_H__