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.
55 lines
1017 B
55 lines
1017 B
2 years ago
|
#ifndef DATA_H_INCLUDED
|
||
|
#define DATA_H_INCLUDED
|
||
|
|
||
|
#include <stdio.h>
|
||
|
// 函数声明
|
||
|
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); // 图表
|
||
|
|
||
|
|
||
|
void read_data(void)
|
||
|
{
|
||
|
printf("读取\n");
|
||
|
}
|
||
|
void save_data(void)
|
||
|
{
|
||
|
printf("保存\n");
|
||
|
}
|
||
|
void print_data(void)
|
||
|
{
|
||
|
printf("打印\n");
|
||
|
}
|
||
|
void query_data(void)
|
||
|
{
|
||
|
printf("查询\n");
|
||
|
}
|
||
|
void add_data(void)
|
||
|
{
|
||
|
puts("添加");
|
||
|
}
|
||
|
void update_data(void)
|
||
|
{
|
||
|
puts("修改");
|
||
|
}
|
||
|
void delete_data(void)
|
||
|
{
|
||
|
puts("删除");
|
||
|
}
|
||
|
void sort_data(void)
|
||
|
{
|
||
|
puts("排序");
|
||
|
}
|
||
|
void make_chart(void)
|
||
|
{
|
||
|
puts("图表");
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif // DATA_H_INCLUDED
|