mirror of
https://github.com/fumiama/simple-dict.git
synced 2026-06-05 02:00:25 +08:00
10 lines
159 B
C
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 |