root / src / procheader.h @ 144
History | View | Annotate | Download (2.7 kB)
| 1 | /*
|
|---|---|
| 2 | * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client |
| 3 | * Copyright (C) 1999-2005 Hiroyuki Yamamoto |
| 4 | * |
| 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. |
| 9 | * |
| 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. |
| 14 | * |
| 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 18 | */ |
| 19 | |
| 20 | #ifndef __PROCHEADER_H__
|
| 21 | #define __PROCHEADER_H__
|
| 22 | |
| 23 | #include <glib.h> |
| 24 | #include <stdio.h> |
| 25 | #include <time.h> |
| 26 | |
| 27 | #include "procmsg.h" |
| 28 | |
| 29 | typedef struct _HeaderEntry HeaderEntry; |
| 30 | typedef struct _Header Header; |
| 31 | |
| 32 | struct _HeaderEntry
|
| 33 | {
|
| 34 | gchar *name; |
| 35 | gchar *body; |
| 36 | gboolean unfold; |
| 37 | }; |
| 38 | |
| 39 | struct _Header
|
| 40 | {
|
| 41 | gchar *name; |
| 42 | gchar *body; |
| 43 | }; |
| 44 | |
| 45 | gint procheader_get_one_field (gchar *buf, |
| 46 | size_t len, |
| 47 | FILE *fp, |
| 48 | HeaderEntry hentry[]); |
| 49 | gchar *procheader_get_unfolded_line (gchar *buf, |
| 50 | size_t len, |
| 51 | FILE *fp); |
| 52 | |
| 53 | GSList *procheader_get_header_list_from_file (const gchar *file);
|
| 54 | GSList *procheader_get_header_list (FILE *fp); |
| 55 | GSList *procheader_add_header_list (GSList *hlist, |
| 56 | const gchar *header_name,
|
| 57 | const gchar *body);
|
| 58 | GSList *procheader_merge_header_list (GSList *hlist1, |
| 59 | GSList *hlist2); |
| 60 | gint procheader_find_header_list (GSList *hlist, |
| 61 | const gchar *header_name);
|
| 62 | void procheader_header_list_destroy (GSList *hlist);
|
| 63 | |
| 64 | GPtrArray *procheader_get_header_array (FILE *fp, |
| 65 | const gchar *encoding);
|
| 66 | GPtrArray *procheader_get_header_array_asis (FILE *fp, |
| 67 | const gchar *encoding);
|
| 68 | void procheader_header_array_destroy (GPtrArray *harray);
|
| 69 | |
| 70 | void procheader_header_free (Header *header);
|
| 71 | |
| 72 | void procheader_get_header_fields (FILE *fp,
|
| 73 | HeaderEntry hentry[]); |
| 74 | MsgInfo *procheader_parse_file (const gchar *file,
|
| 75 | MsgFlags flags, |
| 76 | gboolean full); |
| 77 | MsgInfo *procheader_parse_str (const gchar *str,
|
| 78 | MsgFlags flags, |
| 79 | gboolean full); |
| 80 | MsgInfo *procheader_parse_stream (FILE *fp, |
| 81 | MsgFlags flags, |
| 82 | gboolean full); |
| 83 | |
| 84 | gchar *procheader_get_fromname (const gchar *str);
|
| 85 | |
| 86 | time_t procheader_date_parse (gchar *dest, |
| 87 | const gchar *src,
|
| 88 | gint len); |
| 89 | void procheader_date_get_localtime (gchar *dest,
|
| 90 | gint len, |
| 91 | const time_t timer);
|
| 92 | |
| 93 | #endif /* __PROCHEADER_H__ */ |