NeoMutt  2024-11-14-34-g5aaf0d
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
helpers.h
Go to the documentation of this file.
1
24#ifndef MUTT_EXPANDO_HELPERS_H
25#define MUTT_EXPANDO_HELPERS_H
26
27struct Buffer;
29
30const struct ExpandoRenderData *find_get_number(const struct ExpandoRenderData *rdata, int did, int uid);
31const struct ExpandoRenderData *find_get_string(const struct ExpandoRenderData *rdata, int did, int uid);
32
33void buf_lower_special(struct Buffer *buf);
34
35#endif /* MUTT_EXPANDO_HELPERS_H */
const struct ExpandoRenderData * find_get_number(const struct ExpandoRenderData *rdata, int did, int uid)
Find a get_number() callback function.
Definition: helpers.c:45
const struct ExpandoRenderData * find_get_string(const struct ExpandoRenderData *rdata, int did, int uid)
Find a get_string() callback function.
Definition: helpers.c:69
void buf_lower_special(struct Buffer *buf)
Convert to lowercase, excluding special characters.
Definition: helpers.c:92
String manipulation buffer.
Definition: buffer.h:36
int did
Domain ID.
Definition: render.h:49
int uid
Unique ID.
Definition: render.h:50