claws-mail/src/procheader.h
Colin Leroy d9de0abf0c 2006-03-01 [colin] 2.0.0cvs95
* src/addr_compl.c
	* src/addrbook.c
	* src/addressbook.c
	* src/addrindex.c
	* src/folder_item_prefs.c
	* src/headerview.c
	* src/imap.c
	* src/inc.c
	* src/ldif.c
	* src/mainwindow.c
	* src/mh.c
	* src/msgcache.c
	* src/prefs_common.h
	* src/prefs_msg_colors.c
	* src/procheader.c
	* src/procheader.h
	* src/procmime.c
	* src/procmsg.c
	* src/procmsg.h
	* src/send_message.h
	* src/simple-gettext.c
	* src/summaryview.c
	* src/summaryview.h
	* src/syldap.c
	* src/textview.c
	* src/undo.c
	* src/common/ssl_certificate.c
	* src/common/utils.c
	* src/gtk/colorsel.c
	* src/gtk/gtksctree.c
	* src/gtk/gtkshruler.c
	* src/plugins/trayicon/trayicon.c
		#if 0 goes to /dev/null
2006-03-01 18:38:28 +00:00

95 lines
2.7 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __PROCHEADER_H__
#define __PROCHEADER_H__
#include <glib.h>
#include <stdio.h>
#include <time.h>
#include "procmsg.h"
typedef struct _HeaderEntry HeaderEntry;
typedef struct _Header Header;
struct _HeaderEntry
{
gchar *name;
gchar *body;
gboolean unfold;
};
struct _Header
{
gchar *name;
gchar *body;
};
gint procheader_get_one_field (gchar *buf,
size_t len,
FILE *fp,
HeaderEntry hentry[]);
gint procheader_get_one_field_asis (gchar *buf,
size_t len,
FILE *fp);
gchar *procheader_get_unfolded_line (gchar *buf,
size_t len,
FILE *fp);
GPtrArray *procheader_get_header_array_asis (FILE *fp);
void procheader_header_array_destroy (GPtrArray *harray);
void procheader_header_free (Header *header);
HeaderEntry* procheader_get_headernames (gboolean full);
void procheader_get_header_fields (FILE *fp,
HeaderEntry hentry[]);
MsgInfo *procheader_parse_file (const gchar *file,
MsgFlags flags,
gboolean full,
gboolean decrypted);
MsgInfo *procheader_parse_str (const gchar *str,
MsgFlags flags,
gboolean full,
gboolean decrypted);
MsgInfo *procheader_parse_stream (FILE *fp,
MsgFlags flags,
gboolean full,
gboolean decrypted);
gchar *procheader_get_fromname (const gchar *str);
gboolean procheader_date_parse_to_tm (const gchar *str,
struct tm *t,
char *zone);
time_t procheader_date_parse (gchar *dest,
const gchar *src,
gint len);
void procheader_date_get_localtime (gchar *dest,
gint len,
const time_t timer);
Header * procheader_parse_header (gchar * buf);
gboolean procheader_headername_equal (char * hdr1, char * hdr2);
void procheader_header_free (Header * header);
gint procheader_get_header_from_msginfo(MsgInfo *msginfo, gchar *buf, gint len,gchar *header);
#endif /* __PROCHEADER_H__ */