mirror of
https://github.com/fumiama/android-base16384.git
synced 2026-06-06 02:30:30 +08:00
14 lines
287 B
C
14 lines
287 B
C
//base1432le.h
|
|
//fumiama 20210408
|
|
#include <stdint.h>
|
|
|
|
#define B14BUFSIZ 1024*1024 // 1M
|
|
struct LENDAT {
|
|
uint8_t* data;
|
|
int32_t len;
|
|
};
|
|
typedef struct LENDAT LENDAT;
|
|
|
|
LENDAT* encode(const uint8_t* data, const int32_t len);
|
|
LENDAT* decode(const uint8_t* data, const int32_t len);
|