git subrepo clone https://github.com/libretro/libretro-common.git deps/libretro-common
[pcsx_rearmed.git] / deps / libretro-common / include / encodings / base64.h
CommitLineData
3719602c
PC
1#ifndef _LIBRETRO_ENCODINGS_BASE64_H
2#define _LIBRETRO_ENCODINGS_BASE64_H
3
4#include <stdint.h>
5#include <stddef.h>
6
7#include <retro_common_api.h>
8
9RETRO_BEGIN_DECLS
10
11char* base64(const void* binaryData, int len, int *flen);
12unsigned char* unbase64(const char* ascii, int len, int *flen);
13
14RETRO_END_DECLS
15
16#endif