summaryrefslogtreecommitdiffstats
path: root/rfc2231.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-07-26 12:30:54 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-07-26 12:30:54 +0000
commitb2ab265dd42ff9672e6c7a01a480af2277c38a7a (patch)
tree6c894114a5b6ac04a24c5f971311276cc43d805c /rfc2231.h
parentba321dc70c7547bf0b13f32b1bf21c8b72cc36a5 (diff)
Implement RFC 2231.
Diffstat (limited to 'rfc2231.h')
-rw-r--r--rfc2231.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/rfc2231.h b/rfc2231.h
new file mode 100644
index 00000000..ecd26fa5
--- /dev/null
+++ b/rfc2231.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 1999 Thomas Roessler <roessler@guug.de>
+ *
+ * This program is free software; you can redistribute it
+ * and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * This program is distributed in the hope that it will be
+ * useful, but WITHOUT ANY WARRANTY; without even the implied
+ * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the Free
+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA
+ * 02139, USA.
+ */
+
+void rfc2231_decode_parameters (PARAMETER **);
+int rfc2231_encode (char *, size_t, unsigned char *);
+