mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-04 20:05:57 +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);
|
|
|