1
0
mirror of https://github.com/fumiama/base16384.git synced 2026-06-11 23:00:24 +08:00

完善CMake安装

This commit is contained in:
fumiama
2021-05-19 23:00:25 +08:00
parent d4df0567d5
commit 4900e47b9e
9 changed files with 27 additions and 12 deletions

13
32/base14.h Normal file
View File

@@ -0,0 +1,13 @@
//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);