mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-03 10:31:10 -04:00
dc7b8cc5b4
* Add first_diff.py and sym_info.py * Add c tools from OOT. Replace yaz0 tool
11 lines
254 B
C
11 lines
254 B
C
#ifndef _YAZ0_H_
|
|
#define _YAZ0_H_
|
|
|
|
int yaz0_encode2(uint8_t *src, uint8_t *dest, int uncompressedSize);
|
|
|
|
void yaz0_decode(uint8_t* src, uint8_t* dst, int uncompressedSize);
|
|
|
|
int yaz0_encode(uint8_t *src, uint8_t *dest, int srcSize);
|
|
|
|
#endif // _YAZ0_H_
|