NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
reverse.h
Go to the documentation of this file.
1
23#ifndef MUTT_ALIAS_REVERSE_H
24#define MUTT_ALIAS_REVERSE_H
25
26struct Alias;
27
28void alias_reverse_init (void);
29void alias_reverse_add (struct Alias *alias);
30void alias_reverse_delete (struct Alias *alias);
31void alias_reverse_shutdown(void);
32
33#endif /* MUTT_ALIAS_REVERSE_H */
void alias_reverse_add(struct Alias *alias)
Add an email address lookup for an Alias.
Definition: reverse.c:61
void alias_reverse_shutdown(void)
Clear up the Reverse Alias Hash Table.
Definition: reverse.c:52
void alias_reverse_delete(struct Alias *alias)
Remove an email address lookup for an Alias.
Definition: reverse.c:83
void alias_reverse_init(void)
Set up the Reverse Alias Hash Table.
Definition: reverse.c:42
A shortcut for an email address or addresses.
Definition: alias.h:35