1
0
mirror of https://github.com/fumiama/simple-dict.git synced 2026-06-05 02:00:25 +08:00
Files
simple-dict/config.h
2022-10-14 22:31:58 +08:00

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