mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-29 02:40:44 -04:00
ea83e49e6e
* Makefile adjustments and additions to build fado * Fix typo in makefile * Fix it, maybe? * Update build tools * Update build tools * rm cfg files
11 lines
247 B
C
11 lines
247 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
|