spu: more status bits
[pcsx_rearmed.git] / deps / libretro-common / include / encodings / base64.h
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
9 RETRO_BEGIN_DECLS
10
11 char* base64(const void* binaryData, int len, int *flen);
12 unsigned char* unbase64(const char* ascii, int len, int *flen);
13
14 RETRO_END_DECLS
15
16 #endif