]> granicus.if.org Git - neomutt/blob - rfc3676.h
Convert mutt_attach_reply() to use buffer pool
[neomutt] / rfc3676.h
1 /**
2  * @file
3  * RFC3676 Format Flowed routines
4  *
5  * @authors
6  * Copyright (C) 2005 Andreas Krennmair <ak@synflood.at>
7  * Copyright (C) 2005 Peter J. Holzer <hjp@hjp.net>
8  * Copyright (C) 2005,2007 Rocco Rutte <pdmef@gmx.net>
9  *
10  * @copyright
11  * This program is free software: you can redistribute it and/or modify it under
12  * the terms of the GNU General Public License as published by the Free Software
13  * Foundation, either version 2 of the License, or (at your option) any later
14  * version.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License along with
22  * this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25 #ifndef MUTT_RFC3676_H
26 #define MUTT_RFC3676_H
27
28 #include <stdbool.h>
29
30 struct Body;
31 struct Email;
32 struct State;
33
34 /* These Config Variables are only used in rfc3676.c */
35 extern bool  C_ReflowSpaceQuotes;
36 extern short C_ReflowWrap;
37
38 int rfc3676_handler(struct Body *a, struct State *s);
39 void mutt_rfc3676_space_stuff (struct Email *e);
40 void mutt_rfc3676_space_unstuff (struct Email *e);
41
42 #endif /* MUTT_RFC3676_H */