]> code.citadel.org Git - citadel.git/blobdiff - citadel/mime_parser.h
* Removed the built-in memory leak checker. It wasn't threadsafe and
[citadel.git] / citadel / mime_parser.h
index 78ed3cbff1ba4517effe65b45426e052b1bf2e15..523eb32a990923fb5903d8bd2eaaed3539bb20f2 100644 (file)
@@ -3,7 +3,21 @@
  *
  */
 
+/*
+ * Here's a bunch of stupid magic to make the MIME parser portable between
+ * Citadel and WebCit.
+ */
+#ifndef SIZ
+#define SIZ    4096
+#endif
+
+
+/* 
+ * Declarations for functions in the parser
+ */
+
 void extract_key(char *target, char *source, char *key);
+
 void mime_parser(char *content_start, char *content_end,
                void (*CallBack)
                        (char *cbname,