NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
helpers.h
Go to the documentation of this file.
1
23
24
#ifndef MUTT_EXPANDO_HELPERS_H
25
#define MUTT_EXPANDO_HELPERS_H
26
27
struct
Buffer
;
28
struct
ExpandoRenderCallback
;
29
30
const
struct
ExpandoRenderCallback
*
find_get_number
(
const
struct
ExpandoRenderCallback
*erc,
int
did
,
int
uid
);
31
const
struct
ExpandoRenderCallback
*
find_get_string
(
const
struct
ExpandoRenderCallback
*erc,
int
did
,
int
uid
);
32
33
void
buf_lower_special
(
struct
Buffer
*buf);
34
35
#endif
/* MUTT_EXPANDO_HELPERS_H */
find_get_string
const struct ExpandoRenderCallback * find_get_string(const struct ExpandoRenderCallback *erc, int did, int uid)
Find a get_string() callback function.
Definition
helpers.c:69
buf_lower_special
void buf_lower_special(struct Buffer *buf)
Convert to lowercase, excluding special characters.
Definition
helpers.c:92
find_get_number
const struct ExpandoRenderCallback * find_get_number(const struct ExpandoRenderCallback *erc, int did, int uid)
Find a get_number() callback function.
Definition
helpers.c:45
Buffer
String manipulation buffer.
Definition
buffer.h:36
ExpandoRenderCallback
Definition
render.h:82
ExpandoRenderCallback::uid
int uid
Unique ID, e.g. ExpandoDataAlias.
Definition
render.h:84
ExpandoRenderCallback::did
int did
Domain ID, ExpandoDomain.
Definition
render.h:83