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.
19 lines
477 B
19 lines
477 B
#define NAME_LEN 31
|
|
#define MAX_PARTS 100
|
|
|
|
|
|
// 函数声明
|
|
void init(void);
|
|
void quit(void);
|
|
void display_menu(void);
|
|
int make_choice(void);
|
|
void read_data(void); // 读取
|
|
void save_data(void); // 保存
|
|
void print_data(void); // 打印
|
|
void query_data(void); // 查询
|
|
void add_data(void); // 添加
|
|
void update_data(void); // 修改
|
|
void delete_data(void); // 删除
|
|
void sort_data(void); // 排序
|
|
void make_chart(void); // 图表
|
|
int confirm(const char *msg); |