📄 datastore_opthelp_dummies.c
字号:
#include "common.h"#include "datastore_db.h"/* help messages and option processing */const char **dsm_help_bogofilter(void){ static const char *help_text[] = { NULL }; return &help_text[0]; }const char **dsm_help_bogoutil(void){ static const char *help_text[] = { NULL }; return &help_text[0]; }bool dsm_options_bogofilter(int option, const char *name, const char *val){ (void) option; (void) name; (void) val; return false;}bool dsm_options_bogoutil(int option, cmd_t *flag, int *count, const char **ds_file, const char *name, const char *val){ (void) option; (void) flag; (void) count; (void) ds_file; (void) name; (void) val; return false;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -