1
0
mirror of https://github.com/fumiama/simple-dict.git synced 2026-06-05 10:10:26 +08:00
Files
simple-dict/config.h
2021-05-19 00:42:35 +08:00

10 lines
159 B
C

#ifndef _CONFIG_H_
#define _CONFIG_H_
struct CONFIG {
char pwd[64]; //password
char sps[64]; //set password
};
typedef struct CONFIG CONFIG;
#endif