mirror of
https://github.com/fumiama/base16384.git
synced 2026-06-10 05:10:24 +08:00
9 lines
131 B
C
9 lines
131 B
C
#include <stdint.h>
|
|
|
|
#define B14BUFSIZ 16384
|
|
struct LENDAT {
|
|
uint8_t* data;
|
|
uint64_t len;
|
|
};
|
|
typedef struct LENDAT LENDAT;
|