NeoMutt  2025-01-09-41-g086358
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
quoted.h
Go to the documentation of this file.
1
23#ifndef MUTT_COLOR_QUOTED_H
24#define MUTT_COLOR_QUOTED_H
25
26#include "color.h"
27
28#define COLOR_QUOTED(cid) (((cid) >= MT_COLOR_QUOTED0) && ((cid) <= MT_COLOR_QUOTED9))
29
30void quoted_colors_init (void);
31void quoted_colors_reset (void);
32void quoted_colors_cleanup(void);
33
34struct AttrColor * quoted_colors_get(int q);
36
37#endif /* MUTT_COLOR_QUOTED_H */
Color and attribute parsing.
struct AttrColor * quoted_colors_get(int q)
Return the color of a quote, cycling through the used quotes.
Definition: quoted.c:98
int quoted_colors_num_used(void)
Return the number of used quotes.
Definition: quoted.c:113
void quoted_colors_init(void)
Initialise the Quoted colours.
Definition: quoted.c:71
void quoted_colors_reset(void)
Reset the quoted-email colours.
Definition: quoted.c:79
void quoted_colors_cleanup(void)
Cleanup the quoted-email colours.
Definition: quoted.c:87
A curses colour and its attributes.
Definition: attr.h:66