NeoMutt  2024-04-25-91-gb0e085
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
config_type.h
Go to the documentation of this file.
1
23#ifndef MUTT_ADDRESS_CONFIG_TYPE_H
24#define MUTT_ADDRESS_CONFIG_TYPE_H
25
26struct ConfigSubset;
27
28struct Address *address_new(const char *addr);
29const struct Address *cs_subset_address(const struct ConfigSubset *sub, const char *name);
30
31#endif /* MUTT_ADDRESS_CONFIG_TYPE_H */
struct Address * address_new(const char *addr)
Create an Address from a string.
Definition: config_type.c:52
const struct Address * cs_subset_address(const struct ConfigSubset *sub, const char *name)
Get an Address config item by name.
Definition: config_type.c:272
An email address.
Definition: address.h:36
A set of inherited config items.
Definition: subset.h:47