⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datastore_opthelp_dummies.c

📁 一个C语言写的快速贝叶斯垃圾邮件过滤工具
💻 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 + -