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.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/microhttpd/base64.h b/src/microhttpd/base64.h
deleted file mode 100644
index e5f11319..00000000
--- a/src/microhttpd/base64.h
+++ /dev/null
@@ -1,26 +0,0 @@
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 "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
21char *
22BASE64Decode (const char *src,
23 size_t in_len,
24 size_t *out_len);
25
26#endif /* !BASE64_H */