about summary refs log tree commit diff
path: root/archive.h
diff options
context:
space:
mode:
Diffstat (limited to 'archive.h')
-rw-r--r--archive.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/archive.h b/archive.h
index 3f13109..7740b98 100644
--- a/archive.h
+++ b/archive.h
@@ -222,7 +222,8 @@ void concatData(
 );
 void concatThreads(struct List threads, const struct Envelope *envelopes);
 void concatSearch(
-	const char *name, struct List threads, const struct Envelope *envelopes
+	const char *name, struct List threads, const struct Envelope *envelopes,
+	char *searches[const], size_t len
 );
 
 int mboxFrom(FILE *file);
@@ -251,7 +252,9 @@ int htmlSubthreadOpen(FILE *file, struct List thread);
 int htmlSubthreadClose(FILE *file);
 int htmlThreadClose(FILE *file);
 int htmlSearchHead(FILE *file, const char *name);
-int htmlSearchOpen(FILE *file, const char *name);
+int htmlSearchOpen(
+	FILE *file, const char *name, char *searches[const], size_t len
+);
 int htmlSearchThread(
 	FILE *file, const struct Envelope *envelope, struct List thread
 );