]> 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 7f8be5cd97511bda28c838a0787c1fe0677e18cf..523eb32a990923fb5903d8bd2eaaed3539bb20f2 100644 (file)
@@ -3,6 +3,19 @@
  *
  */
 
+/*
+ * 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,