15 lines
313 B
C
15 lines
313 B
C
#ifndef FASTLZ_H
|
|
#define FASTLZ_H
|
|
|
|
#define FASTLZ_VERSION 0x000100
|
|
|
|
#define FASTLZ_VERSION_MAJOR 0
|
|
#define FASTLZ_VERSION_MINOR 0
|
|
#define FASTLZ_VERSION_REVISION 0
|
|
|
|
#define FASTLZ_VERSION_STRING "0.1.0"
|
|
|
|
int fastlz_decompress2(const void* input1, const void* input2, int length);
|
|
|
|
#endif /* FASTLZ_H */
|