1 /**
2  * @file
3  * String processing routines to generate the mail index
4  *
5  * @authors
6  * Copyright (C) 2018 Richard Russon <rich@flatcap.org>
7  * Copyright (C) 2019 Pietro Cerutti <gahr@gahr.ch>
8  *
9  * @copyright
10  * This program is free software: you can redistribute it and/or modify it under
11  * the terms of the GNU General Public License as published by the Free Software
12  * Foundation, either version 2 of the License, or (at your option) any later
13  * version.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License along with
21  * this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23 
24 #ifndef MUTT_HDRLINE_H
25 #define MUTT_HDRLINE_H
26 
27 #include <stdio.h>
28 #include "format_flags.h"
29 
30 struct Email;
31 struct Mailbox;
32 
33 void mutt_make_string(char *buf, size_t buflen, int cols, const char *s,
34                       struct Mailbox *m, int inpgr, struct Email *e,
35                       MuttFormatFlags flags, const char *progress);
36 
37 #endif /* MUTT_HDRLINE_H */
38