mirror of
https://github.com/fumiama/simple-dict.git
synced 2026-06-05 02:00:25 +08:00
11 lines
166 B
C
11 lines
166 B
C
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
struct config_t {
|
|
char pwd[64]; //password
|
|
char sps[64]; //set password
|
|
};
|
|
typedef struct config_t config_t;
|
|
|
|
#endif
|