diff options
Diffstat (limited to '')
-rw-r--r-- | archive.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/archive.h b/archive.h index 872bf00..83f2e76 100644 --- a/archive.h +++ b/archive.h @@ -64,10 +64,11 @@ static inline void envelopeFree(struct Envelope envelope) { free(envelope.bcc.addrs); } -enum Atom exportFetch(FILE *imap, struct List threads); +bool exportFetch(FILE *imap, enum Atom tag, struct List threads); void exportData(struct List items); -enum Atom concatFetch(FILE *imap, struct List threads); +void concatFetch(FILE *imap, enum Atom tag, struct List threads); +void concatData(struct List threads, struct List items); #define TEMPLATE(...) #__VA_ARGS__ |