root / libsylph / quoted-printable.h @ aebfd4cc
History | View | Annotate | Download (492 Bytes)
| 1 | /*
|
|---|---|
| 2 | * LibSylph -- E-Mail client library |
| 3 | * Copyright (C) 1999-2011 Hiroyuki Yamamoto |
| 4 | */ |
| 5 | |
| 6 | #ifndef __QUOTED_PRINTABLE_H__
|
| 7 | #define __QUOTED_PRINTABLE_H__
|
| 8 | |
| 9 | #include <glib.h> |
| 10 | |
| 11 | void qp_encode_line (gchar *out,
|
| 12 | const guchar *in);
|
| 13 | gint qp_decode_line (gchar *str); |
| 14 | |
| 15 | gint qp_decode_q_encoding (guchar *out, |
| 16 | const gchar *in,
|
| 17 | gint inlen); |
| 18 | gint qp_get_q_encoding_len (const guchar *str);
|
| 19 | void qp_q_encode (gchar *out,
|
| 20 | const guchar *in);
|
| 21 | |
| 22 | #endif /* __QUOTED_PRINTABLE_H__ */ |