summaryrefslogtreecommitdiffstats
path: root/src/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base64.h')
-rw-r--r--src/base64.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/base64.h b/src/base64.h
new file mode 100644
index 0000000..b56b9db
--- /dev/null
+++ b/src/base64.h
@@ -0,0 +1,8 @@
+#ifndef BASE64_H
+#define BASE64_H
+
+#include <stdlib.h>
+
+void base64_decode(const char *src, char *dest, size_t dest_len);
+
+#endif