fix regression in mutt_is_application_pgp \o/
[apps/madmutt.git] / lib-mime / rfc3676.h
1 /*
2  * Parts were written/modified by:
3  * Andreas Krennmair <ak@synflood.at>
4  * Peter J. Holzer <hjp@hjp.net>
5  * Rocco Rutte <pdmef@cs.tu-berlin.de>
6  *
7  * This file is part of mutt-ng, see http://www.muttng.org/.
8  * It's licensed under the GNU General Public License,
9  * please see the file GPL in the top level source directory.
10  */
11 #ifndef _MUTT_RFC3676_H
12 #define _MUTT_RFC3676_H
13
14 #include <lib-mime/mime.h>
15 #include "state.h"
16
17 /* body handler implementing RfC 3676 for format=flowed */
18 int rfc3676_handler (BODY * a, STATE * s);
19
20 /*
21  * this does the space-stuffing required as in 'MUST'
22  * this is only used right after editing the initial message's content
23  * as elsewhere it's too difficult to catch all circumstances right;
24  * esp. with '>' which this routine doesn't cover... XXX
25  */
26 void rfc3676_space_stuff (HEADER* hdr);
27
28 #endif /* !_MUTT_RFC3676_H */