1 #ifndef RFC5322_UTILS_H
2 #define RFC5322_UTILS_H
5 char from
[1000]; /* From: address */
6 unsigned char from_md5
[16]; /* md5 of from address */
8 char subject
[1000]; /* Subject: text */
12 int rfc5322_extract_address(char *from
, const char *buf
, size_t n
);
13 void rfc5322_extract_subject(char *subject
, const char *buf
, size_t n
);
15 #endif /* RFC5322_UTILS_H */