diff options
author | June McEnroe <june@causal.agency> | 2020-04-10 14:59:34 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-10 14:59:34 -0400 |
commit | 851568db391ad62d5caa578bb137d0f26266337d (patch) | |
tree | 7f2ca1f9eb424291d5825cdb5e48129f4ce620cc /archive.h | |
parent | Move extra atoms into the predefined enum (diff) | |
download | bubger-851568db391ad62d5caa578bb137d0f26266337d.tar.gz bubger-851568db391ad62d5caa578bb137d0f26266337d.zip |
Move parseEnvelope to parse.c
Diffstat (limited to '')
-rw-r--r-- | archive.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archive.h b/archive.h index 83f2e76..b43fe87 100644 --- a/archive.h +++ b/archive.h @@ -64,6 +64,8 @@ static inline void envelopeFree(struct Envelope envelope) { free(envelope.bcc.addrs); } +void parseEnvelope(struct Envelope *envelope, struct List list); + bool exportFetch(FILE *imap, enum Atom tag, struct List threads); void exportData(struct List items); |