aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/base64.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-05 15:44:29 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-05 15:44:29 +0300
commit1ed1fe5e9ead8cda8c19f339f92a924c88fcbdcc (patch)
tree43e44e9fba34653f1db987782e82afd00d7ca73e /src/microhttpd/base64.h
parent1c58c968ced8a3401bd6c5006eb47a92a5998c02 (diff)
downloadlibmicrohttpd-1ed1fe5e9ead8cda8c19f339f92a924c88fcbdcc.tar.gz
libmicrohttpd-1ed1fe5e9ead8cda8c19f339f92a924c88fcbdcc.zip
base64: added input checking and fixed compiler warnings
Diffstat (limited to 'src/microhttpd/base64.h')
-rw-r--r--src/microhttpd/base64.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/microhttpd/base64.h b/src/microhttpd/base64.h
index 65042c0b..a489dc69 100644
--- a/src/microhttpd/base64.h
+++ b/src/microhttpd/base64.h
@@ -9,9 +9,7 @@
9#ifndef BASE64_H 9#ifndef BASE64_H
10#define BASE64_H 10#define BASE64_H
11 11
12#include "platform.h"
13
14char * 12char *
15BASE64Decode (const char*src); 13BASE64Decode (const char *src);
16 14
17#endif /* !BASE64_H */ 15#endif /* !BASE64_H */