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

📄 rfc822.h

📁 使用具有增量学习的监控式学习方法。包括几个不同的分类算法。
💻 H
字号:
/*  $Header: /cvs/src/mairix/mairix.h,v 1.2 2002/07/29 23:03:47 richard Exp $  mairix - message index builder and finder for maildir folders. ********************************************************************** * Copyright (C) Richard P. Curnow  2002 * * This program is free software; you can redistribute it and/or modify * it under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * ********************************************************************** */#ifndef RFC822_H#define RFC822_H#include <time.h>typedef struct text_part_ text_part;struct text_part_ {    char *text;		/**< Text */    int len;		/**< Text length */    char *charset;	/**< Character set */    text_part *next;	/**< Next text part, or NULL if last */};struct rfc822;struct rfc822 *rfc822_new (char *data);voidrfc822_free (struct rfc822 *msg);const char *rfc822_get_from (struct rfc822 *msg);const char *rfc822_get_from_name (struct rfc822 *msg);const char *rfc822_get_from_address (struct rfc822 *msg);const char *rfc822_get_to (struct rfc822 *msg);const char *rfc822_get_subject (struct rfc822 *msg);time_trfc822_get_date (struct rfc822 *msg);text_part *rfc822_get_parts (struct rfc822 *msg);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -