1
0
mirror of https://github.com/fumiama/simple-kanban.git synced 2026-06-05 08:20:29 +08:00
Files
simple-kanban/config.h
源文雨 d10b87e05c fix
2022-10-26 14:51:04 +08:00

17 lines
316 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;
struct const_config_t {
const char pwd[64]; //password
const char sps[64]; //set password
};
typedef struct const_config_t const_config_t;
#endif