mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 00:39:14 +00:00
13 lines
302 B
C
13 lines
302 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint32_t lzss_get_decompressed_size(uint8_t* compressed, uint32_t compressedsize);
|
|
int lzss_decompress(uint8_t* compressed, uint32_t compressedsize, uint8_t* decompressed, uint32_t decompressedsize);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |