makerom/deps/libblz/include/blz.h

15 lines
279 B
C
Raw Normal View History

2025-01-15 13:29:18 +01:00
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
#define BLZ_NORMAL 0 // normal mode
#define BLZ_BEST 1 // best mode
uint8_t *BLZ_Code(uint8_t *raw_buffer, int raw_len, uint32_t *new_len, int best);
#ifdef __cplusplus
}
#endif