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