1
0
mirror of https://github.com/fumiama/simple-dict.git synced 2026-06-12 14:10:50 +08:00

优化代码结构

This commit is contained in:
源文雨
2022-05-15 13:34:53 +08:00
parent 85a6d32cf9
commit 46e80af181
7 changed files with 50 additions and 31 deletions

View File

@@ -1,10 +1,10 @@
#ifndef _CONFIG_H_
#define _CONFIG_H_
struct CONFIG {
struct config_t {
char pwd[64]; //password
char sps[64]; //set password
};
typedef struct CONFIG CONFIG;
typedef struct config_t config_t;
#endif