aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/base64.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-05-05 18:07:33 +0000
committerChristian Grothoff <christian@grothoff.org>2013-05-05 18:07:33 +0000
commit9eb27c8dbe1939344ccced9c498895f0e92e8197 (patch)
treea97d1b7caf1e5dc79c22b08d58be70bc8c205cba /src/microhttpd/base64.h
parent1725bcf3c546fccbf22d7794bf7290fcc28c385d (diff)
downloadlibmicrohttpd-9eb27c8dbe1939344ccced9c498895f0e92e8197.tar.gz
libmicrohttpd-9eb27c8dbe1939344ccced9c498895f0e92e8197.zip
-changing directory name
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..831adf97
--- /dev/null
+++ b/src/microhttpd/base64.h
@@ -0,0 +1,17 @@
1/*
2 * This code implements the BASE64 algorithm.
3 * This code is in the public domain; do with it what you wish.
4 *
5 * @file base64.c
6 * @brief This code implements the BASE64 algorithm
7 * @author Matthieu Speder
8 */
9#ifndef BASE64_H
10#define BASE64_H
11
12#include "platform.h"
13
14char *
15BASE64Decode(const char* src);
16
17#endif /* !BASE64_H */