Statistics
| Revision:

root / libsylph / quoted-printable.h @ 1354

History | View | Annotate | Download (1.2 kB)

1 528 hiro
/*
2 578 hiro
 * LibSylph -- E-Mail client library
3 578 hiro
 * Copyright (C) 1999-2005 Hiroyuki Yamamoto
4 528 hiro
 *
5 578 hiro
 * This library is free software; you can redistribute it and/or
6 578 hiro
 * modify it under the terms of the GNU Lesser General Public
7 578 hiro
 * License as published by the Free Software Foundation; either
8 578 hiro
 * version 2.1 of the License, or (at your option) any later version.
9 528 hiro
 *
10 578 hiro
 * This library is distributed in the hope that it will be useful,
11 528 hiro
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 578 hiro
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 578 hiro
 * Lesser General Public License for more details.
14 528 hiro
 *
15 578 hiro
 * You should have received a copy of the GNU Lesser General Public
16 578 hiro
 * License along with this library; if not, write to the Free Software
17 578 hiro
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 528 hiro
 */
19 528 hiro
20 528 hiro
#ifndef __QUOTED_PRINTABLE_H__
21 528 hiro
#define __QUOTED_PRINTABLE_H__
22 528 hiro
23 528 hiro
#include <glib.h>
24 528 hiro
25 528 hiro
void qp_encode_line                (gchar                *out,
26 528 hiro
                                 const guchar        *in);
27 528 hiro
gint qp_decode_line                (gchar                *str);
28 528 hiro
29 528 hiro
gint qp_decode_q_encoding        (guchar                *out,
30 528 hiro
                                 const gchar        *in,
31 528 hiro
                                 gint                 inlen);
32 528 hiro
gint qp_get_q_encoding_len        (const guchar        *str);
33 528 hiro
void qp_q_encode                (gchar                *out,
34 528 hiro
                                 const guchar        *in);
35 528 hiro
36 528 hiro
#endif /* __QUOTED_PRINTABLE_H__ */