NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
reverse.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_ALIAS_REVERSE_H
24#define MUTT_ALIAS_REVERSE_H
25
26struct Alias;
27struct HashTable;
28
29struct HashTable *alias_reverse_init (void);
30void alias_reverse_cleanup(struct HashTable **reverse);
31
32void alias_reverse_add (struct Alias *alias);
33void alias_reverse_delete(struct Alias *alias);
34
35#endif /* MUTT_ALIAS_REVERSE_H */
void alias_reverse_cleanup(struct HashTable **reverse)
Clear up the Reverse Alias Hash Table.
Definition reverse.c:53
struct HashTable * alias_reverse_init(void)
Set up the Reverse Alias Hash Table.
Definition reverse.c:43
void alias_reverse_add(struct Alias *alias)
Add an email address lookup for an Alias.
Definition reverse.c:62
void alias_reverse_delete(struct Alias *alias)
Remove an email address lookup for an Alias.
Definition reverse.c:87
A shortcut for an email address or addresses.
Definition alias.h:35
A Hash Table.
Definition hash.h:99