mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 09:40:06 +00:00
17 lines
313 B
C
17 lines
313 B
C
|
#ifndef _LIBRETRO_ENCODINGS_BASE64_H
|
||
|
#define _LIBRETRO_ENCODINGS_BASE64_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#include <retro_common_api.h>
|
||
|
|
||
|
RETRO_BEGIN_DECLS
|
||
|
|
||
|
char* base64(const void* binaryData, int len, int *flen);
|
||
|
unsigned char* unbase64(const char* ascii, int len, int *flen);
|
||
|
|
||
|
RETRO_END_DECLS
|
||
|
|
||
|
#endif
|