diff options
author | June McEnroe <june@causal.agency> | 2020-04-12 21:56:44 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-12 21:56:44 -0400 |
commit | 27ce93d8778ccf68c8b436454213e6f6fe826a38 (patch) | |
tree | ddb766133be35390ad3cce7d6e25c608afe74de1 /archive.h | |
parent | Refactor exportData some (diff) | |
download | bubger-27ce93d8778ccf68c8b436454213e6f6fe826a38.tar.gz bubger-27ce93d8778ccf68c8b436454213e6f6fe826a38.zip |
Concatenate HTML threads
Diffstat (limited to '')
-rw-r--r-- | archive.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/archive.h b/archive.h index addd94d..541c03c 100644 --- a/archive.h +++ b/archive.h @@ -184,6 +184,11 @@ int mboxBody(FILE *file, const char *body); int htmlMessageHead(FILE *file, const struct Envelope *envelope); int htmlMessageTail(FILE *file); +int htmlThreadHead(FILE *file, const struct Envelope *envelope); +int htmlThreadHeader(FILE *file, const struct Envelope *envelope); +int htmlThreadOpen(FILE *file); +int htmlThreadClose(FILE *file); +int htmlThreadTail(FILE *file); int atomEntryHead(FILE *file, const struct Envelope *envelope); int atomEntryTail(FILE *file); |