aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/base64.h')
-rw-r--r--src/microhttpd/base64.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/microhttpd/base64.h b/src/microhttpd/base64.h
new file mode 100644
index 00000000..ba96ca0c
--- /dev/null
+++ b/src/microhttpd/base64.h
@@ -0,0 +1,17 @@
+/*
+ * This code implements the BASE64 algorithm.
+ * This code is in the public domain; do with it what you wish.
+ *
+ * @file base64.c
+ * @brief This code implements the BASE64 algorithm
+ * @author Matthieu Speder
+ */
+#ifndef BASE64_H
+#define BASE64_H
+
+#include "platform.h"
+
+char *
+BASE64Decode(const char* src);
+
+#endif /* !BASE64_H */