1 #ifndef MAIL_COMMAND_H
2 #define MAIL_COMMAND_H
3 
4 struct mail_command;
5 
6 extern struct mail_command *stable_mail_commands_head;
7 extern struct mail_command *stable_mail_commands_tail;
8 
9 int mail_command_update_parse(const char *const *args, const char **error_r);
10 
11 void mail_command_ref(struct mail_command *cmd);
12 void mail_command_unref(struct mail_command **cmd);
13 
14 void mail_commands_free_memory(void);
15 void mail_commands_init(void);
16 void mail_commands_deinit(void);
17 
18 #endif
19