diff options
author | June McEnroe <june@causal.agency> | 2020-04-25 14:22:41 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-25 14:22:41 -0400 |
commit | 67721f3dbd4ffeb1a03145170df40f616ee0a118 (patch) | |
tree | 488236f2789a6e41ef4e16eb5d818825e43c29a0 /archive.h | |
parent | Free envelope in concatData (diff) | |
download | bubger-67721f3dbd4ffeb1a03145170df40f616ee0a118.tar.gz bubger-67721f3dbd4ffeb1a03145170df40f616ee0a118.zip |
Accumulate thread envelopes before concatenation
Diffstat (limited to '')
-rw-r--r-- | archive.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/archive.h b/archive.h index 23f27f1..65f8a84 100644 --- a/archive.h +++ b/archive.h @@ -140,7 +140,11 @@ bool exportData(FILE *imap, enum Atom tag, struct List items); extern const char *concatHead; void concatFetch(FILE *imap, enum Atom tag, struct List threads); -void concatData(struct List threads, struct List items); +void concatData( + struct List threads, struct Envelope *envelopes, struct List items +); +void concatThreads(struct List threads, const struct Envelope *envelopes); +void concatIndex(struct List threads, const struct Envelope *envelopes); #define TEMPLATE(...) #__VA_ARGS__ |