1
0
mirror of https://github.com/fumiama/simple-dict.git synced 2026-06-19 10:26:24 +08:00

引入全新dict格式

This commit is contained in:
fumiama
2021-05-19 00:42:35 +08:00
parent be2009bbb2
commit 0586721dcf
9 changed files with 314 additions and 203 deletions

10
config.h Normal file
View File

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