mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-26 23:36:37 -04:00
This codec requires floating point. Original author: Peter Sovietov Ported to Rockbox: Roman Skylarov Further integration and bugfixes: Solomon Peachy Change-Id: I781ecd3592dfcdbbc694063334350342534f1d6c
6 lines
120 B
C
6 lines
120 B
C
#ifndef LZH_H
|
|
#define LZH_H
|
|
|
|
int LzUnpack(void *pSrc, int srcSize, void *pDst, int dstSize);
|
|
|
|
#endif /* ifndef LZH_H */
|