blob: fcfff44c018176bc7adb9cd19327a5efc85e084a (
plain)
1
2
3
4
5
6
7
8
|
#ifndef MESSAGE_ID_H
#define MESSAGE_ID_H
/* Returns the next valid message ID from a given Message-ID header.
The return value is allocated from data stack. */
const char *message_id_get_next(const char **msgid_p);
#endif
|