🎋搭建数据结构
为之后交互界面的编写做准备。
我们需要实现的模块
.---+- include -+- tools -+- color.h
| | +- hint.h
| | +- info.h
| |
| +- user -+- user.h <---
| |
| +- good -+- good.h <---
| |
| +- order -+- order.h <---
| |
| +- config.h <---
|
+- src -+- tools -+- color.c
| +- hint.c
| +- info.c
|
+- data -+- id.txt
| +- user.txt <---
| +- good.txt <---
| +- order.txt <---
|
+- user -+- user.c <---
|
+- good -+- good.c <---
|
+- order -+- order.c <---
|
+- main.c最后更新于