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.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/microhttpd/base64.h b/src/microhttpd/base64.h
index a489dc69..e5f11319 100644
--- a/src/microhttpd/base64.h
+++ b/src/microhttpd/base64.h
@@ -9,7 +9,18 @@
9#ifndef BASE64_H 9#ifndef BASE64_H
10#define BASE64_H 10#define BASE64_H
11 11
12#include "mhd_options.h"
13#ifdef HAVE_STDDEF_H
14#include <stddef.h>
15#elif defined(HAVE_STDLIB_H)
16#include <stdlib.h>
17#else
18#include <stdio.h>
19#endif
20
12char * 21char *
13BASE64Decode (const char *src); 22BASE64Decode (const char *src,
23 size_t in_len,
24 size_t *out_len);
14 25
15#endif /* !BASE64_H */ 26#endif /* !BASE64_H */