/** * @file * RFC3676 Format Flowed routines * * @authors * Copyright (C) 2005 Andreas Krennmair * Copyright (C) 2005 Peter J. Holzer * Copyright (C) 2005,2007 Rocco Rutte * * @copyright * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 2 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see . */ #ifndef MUTT_RFC3676_H #define MUTT_RFC3676_H #include struct Body; struct Email; struct State; /* These Config Variables are only used in rfc3676.c */ extern bool C_ReflowSpaceQuotes; extern short C_ReflowWrap; int rfc3676_handler(struct Body *a, struct State *s); void mutt_rfc3676_space_stuff (struct Email *e); void mutt_rfc3676_space_unstuff (struct Email *e); #endif /* MUTT_RFC3676_H */