datastore_opthelp_dummies.c

来自「一个C语言写的快速贝叶斯垃圾邮件过滤工具」· C语言 代码 · 共 40 行

C
40
字号
#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 + =
减小字号Ctrl + -
显示快捷键?