You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
364 B
22 lines
364 B
#ifndef INFORMATION_H_INCLUDED
|
|
#define INFORMATION_H_INCLUDED
|
|
|
|
struct BOOK {
|
|
char name[21];
|
|
char author[21];
|
|
char type[21];
|
|
char publish[21];
|
|
char user[21];
|
|
int number;
|
|
struct BOOK *next;
|
|
};
|
|
|
|
struct STUDENT {
|
|
char name[21];
|
|
char user_id[21];
|
|
char password[21];
|
|
struct STUDENT *next;
|
|
};
|
|
|
|
#endif // INFORMATION_H_INCLUDED
|