summaryrefslogtreecommitdiffstats
path: root/src/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base64.h')
-rw-r--r--src/base64.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/base64.h b/src/base64.h
index dbaf104..6eee33b 100644
--- a/src/base64.h
+++ b/src/base64.h
@@ -21,9 +21,8 @@
21#ifndef BASE64_H 21#ifndef BASE64_H
22#define BASE64_H 22#define BASE64_H
23#include <stdlib.h> 23#include <stdlib.h>
24#include "common.h"
25 24
26_PLIST_INTERNAL char *base64encode(const unsigned char *buf, size_t *size); 25char *base64encode(const unsigned char *buf, size_t *size);
27_PLIST_INTERNAL unsigned char *base64decode(const char *buf, size_t *size); 26unsigned char *base64decode(const char *buf, size_t *size);
28 27
29#endif 28#endif