summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/lib/support/base64/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/lib/support/base64/base64.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/lib/support/base64/base64.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/lib/support/base64/base64.h b/Build/source/texk/web2c/mfluadir/otfcc/lib/support/base64/base64.h
new file mode 100644
index 00000000000..36d4702dd90
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/lib/support/base64/base64.h
@@ -0,0 +1,10 @@
+#ifndef CARYLL_SUPPORT_BASE64_H
+#define CARYLL_SUPPORT_BASE64_H
+
+#include <stdlib.h>
+#include <string.h>
+#include <stdint.h>
+uint8_t *base64_encode(const uint8_t *src, size_t len, size_t *out_len);
+uint8_t *base64_decode(const uint8_t *src, size_t len, size_t *out_len);
+
+#endif