Files
wehub-resource-sync 41cb1c0170
OpenSSF Scorecard / scorecard (push) Failing after 0s
DCO / dco (push) Failing after 0s
CodeQL SAST / analyze (push) Failing after 1s
Deploy Pages / deploy (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:28:05 +08:00

14 lines
359 B
C

#ifndef CBM_LZ4_STORE_H
#define CBM_LZ4_STORE_H
// LZ4 HC compression (level 9).
int cbm_lz4_compress_hc(const char *src, int srcLen, char *dst, int dstCap);
// LZ4 decompression.
int cbm_lz4_decompress(const char *src, int srcLen, char *dst, int originalLen);
// Maximum compressed size bound.
int cbm_lz4_bound(int inputSize);
#endif // CBM_LZ4_STORE_H