summaryrefslogtreecommitdiffstats
path: root/src/lib/istream-concat.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/istream-concat.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/istream-concat.h b/src/lib/istream-concat.h
new file mode 100644
index 0000000..a028534
--- /dev/null
+++ b/src/lib/istream-concat.h
@@ -0,0 +1,7 @@
+#ifndef ISTREAM_CONCAT_H
+#define ISTREAM_CONCAT_H
+
+/* Concatenate input streams into a single stream. */
+struct istream *i_stream_create_concat(struct istream *input[]);
+
+#endif