summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/lib/support/base64/base64.h
blob: 36d4702dd90d14326726a42126ed3f7b0727e275 (plain)
1
2
3
4
5
6
7
8
9
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