NeoMutt  2023-03-22-27-g3cb248
Teaching an old dog new tricks
DOXYGEN
hdrline.h
Go to the documentation of this file.
1
24#ifndef MUTT_HDRLINE_H
25#define MUTT_HDRLINE_H
26
27#include <stdio.h>
28#include "format_flags.h"
29
30struct Email;
31struct Mailbox;
32
33void 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 */
Flags to control mutt_expando_format()
uint8_t MuttFormatFlags
Flags for mutt_expando_format(), e.g. MUTT_FORMAT_FORCESUBJ.
Definition: format_flags.h:29
void mutt_make_string(char *buf, size_t buflen, int cols, const char *s, struct Mailbox *m, int inpgr, struct Email *e, MuttFormatFlags flags, const char *progress)
Create formatted strings using mailbox expandos.
Definition: hdrline.c:1443
The envelope/body of an email.
Definition: email.h:37
A mailbox.
Definition: mailbox.h:79