2006-12-12 [paul] 2.6.1cvs21
[claws.git] / src / procheader.h
blob44a716ea0012bcef08dec1a39edb601651a07b38
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #ifndef __PROCHEADER_H__
21 #define __PROCHEADER_H__
23 #include <glib.h>
24 #include <stdio.h>
25 #include <time.h>
27 #include "procmsg.h"
29 typedef struct _HeaderEntry HeaderEntry;
30 typedef struct _Header Header;
32 struct _HeaderEntry
34 gchar *name;
35 gchar *body;
36 gboolean unfold;
39 struct _Header
41 gchar *name;
42 gchar *body;
45 gint procheader_get_one_field (gchar *buf,
46 size_t len,
47 FILE *fp,
48 HeaderEntry hentry[]);
49 gint procheader_get_one_field_asis (gchar *buf,
50 size_t len,
51 FILE *fp);
52 gchar *procheader_get_unfolded_line (gchar *buf,
53 size_t len,
54 FILE *fp);
56 GPtrArray *procheader_get_header_array_asis (FILE *fp);
57 void procheader_header_array_destroy (GPtrArray *harray);
58 void procheader_header_free (Header *header);
60 HeaderEntry* procheader_get_headernames (gboolean full);
62 void procheader_get_header_fields (FILE *fp,
63 HeaderEntry hentry[]);
64 MsgInfo *procheader_parse_file (const gchar *file,
65 MsgFlags flags,
66 gboolean full,
67 gboolean decrypted);
68 MsgInfo *procheader_parse_str (const gchar *str,
69 MsgFlags flags,
70 gboolean full,
71 gboolean decrypted);
72 MsgInfo *procheader_parse_stream (FILE *fp,
73 MsgFlags flags,
74 gboolean full,
75 gboolean decrypted);
77 gchar *procheader_get_fromname (const gchar *str);
79 gboolean procheader_date_parse_to_tm (const gchar *str,
80 struct tm *t,
81 char *zone);
83 time_t procheader_date_parse (gchar *dest,
84 const gchar *src,
85 gint len);
86 void procheader_date_get_localtime (gchar *dest,
87 gint len,
88 const time_t timer);
89 Header * procheader_parse_header (gchar * buf);
91 gboolean procheader_headername_equal (char * hdr1, char * hdr2);
92 void procheader_header_free (Header * header);
94 gint procheader_get_header_from_msginfo(MsgInfo *msginfo, gchar *buf, gint len,gchar *header);
95 #endif /* __PROCHEADER_H__ */