NeoMutt
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
state.h
Go to the documentation of this file.
1
23#ifndef MUTT_MUTT_STATE_H
24#define MUTT_MUTT_STATE_H
25
26#include <stdint.h>
27#include <stdio.h>
28#include <wchar.h>
29
30typedef uint16_t StateFlags;
31#define STATE_NO_FLAGS 0
32#define STATE_DISPLAY (1 << 0)
33#define STATE_VERIFY (1 << 1)
34#define STATE_PENDINGPREFIX (1 << 2)
35#define STATE_WEED (1 << 3)
36#define STATE_CHARCONV (1 << 4)
37#define STATE_PRINTING (1 << 5)
38#define STATE_REPLYING (1 << 6)
39#define STATE_FIRSTDONE (1 << 7)
40#define STATE_DISPLAY_ATTACH (1 << 8)
41#define STATE_PAGER (1 << 9)
42
46struct State
47{
48 FILE *fp_in;
49 FILE *fp_out;
50 char *prefix;
52 int wraplen;
53};
54
55#define state_set_prefix(state) ((state)->flags |= STATE_PENDINGPREFIX)
56#define state_reset_prefix(state) ((state)->flags &= ~STATE_PENDINGPREFIX)
57#define state_puts(STATE, STR) fputs(STR, (STATE)->fp_out)
58#define state_putc(STATE, STR) fputc(STR, (STATE)->fp_out)
59
60void state_attach_puts (struct State *state, const char *t);
61void state_mark_attach (struct State *state);
62void state_mark_protected_header(struct State *state);
63void state_prefix_put (struct State *state, const char *buf, size_t buflen);
64void state_prefix_putc (struct State *state, char c);
65int state_printf (struct State *state, const char *fmt, ...)
66 __attribute__((__format__(__printf__, 2, 3)));
67int state_putws (struct State *state, const wchar_t *ws);
68
69const char *state_attachment_marker(void);
70const char *state_protected_header_marker(void);
71
72#endif /* MUTT_MUTT_STATE_H */
void state_attach_puts(struct State *state, const char *t)
Write a string to the state.
Definition: state.c:102
int state_printf(struct State *state, const char *fmt,...) __attribute__((__format__(__printf__
void state_mark_attach(struct State *state)
Write a unique marker around content.
Definition: state.c:71
const char * state_attachment_marker(void)
Get a unique (per-run) ANSI string to mark PGP messages in an email.
Definition: state.c:43
void state_prefix_put(struct State *state, const char *buf, size_t buflen)
Write a prefixed fixed-string to the State.
Definition: state.c:203
void state_mark_protected_header(struct State *state)
Write a unique marker around protected headers.
Definition: state.c:86
int int state_putws(struct State *state, const wchar_t *ws)
Write a wide string to the state.
Definition: state.c:145
const char * state_protected_header_marker(void)
Get a unique (per-run) ANSI string to mark protected headers in an email.
Definition: state.c:57
uint16_t StateFlags
Flags for State->flags, e.g. STATE_DISPLAY.
Definition: state.h:30
void state_prefix_putc(struct State *state, char c)
Write a prefixed character to the state.
Definition: state.c:163
Keep track when processing files.
Definition: state.h:47
int wraplen
Width to wrap lines to (when flags & STATE_DISPLAY)
Definition: state.h:52
StateFlags flags
Flags, e.g. STATE_DISPLAY.
Definition: state.h:51
FILE * fp_out
File to write to.
Definition: state.h:49
char * prefix
String to add to the beginning of each output line.
Definition: state.h:50
FILE * fp_in
File to read from.
Definition: state.h:48