summaryrefslogtreecommitdiffstats
path: root/gpglib/mimegpgstack.h
diff options
context:
space:
mode:
Diffstat (limited to 'gpglib/mimegpgstack.h')
-rw-r--r--gpglib/mimegpgstack.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/gpglib/mimegpgstack.h b/gpglib/mimegpgstack.h
new file mode 100644
index 0000000..a4b2d0b
--- /dev/null
+++ b/gpglib/mimegpgstack.h
@@ -0,0 +1,32 @@
+#ifndef mimegpgstack_h
+#define mimegpgstack_h
+
+/*
+** Copyright 2001 Double Precision, Inc. See COPYING for
+** distribution information.
+*/
+
+
+#include "config.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct mimestack {
+ struct mimestack *next;
+ char *boundary;
+} ;
+
+int libmail_mimestack_push(struct mimestack **, const char *);
+void libmail_mimestack_pop(struct mimestack **);
+
+struct mimestack *libmail_mimestack_search(struct mimestack *, const char *);
+
+void libmail_mimestack_pop_to(struct mimestack **, struct mimestack *);
+
+#ifdef __cplusplus
+} ;
+#endif
+
+#endif