mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-19 09:31:24 +00:00
12 lines
326 B
C
12 lines
326 B
C
|
|
||
|
/*
|
||
|
Decode a LZG buffer (without the 16-byte header) to memory.
|
||
|
src = source buffer
|
||
|
dest = destination buffer
|
||
|
end = 1 + final byte in destination buffer
|
||
|
*/
|
||
|
unsigned char* lzg_decode_vram(const unsigned char* src,
|
||
|
unsigned char* dest,
|
||
|
unsigned char* end);
|
||
|
|