2016-01-27 16:42:15 +01:00
|
|
|
#ifndef LZ11_H
|
|
|
|
|
#define LZ11_H
|
2015-01-22 22:06:24 -08:00
|
|
|
|
2015-01-23 22:46:15 -08:00
|
|
|
#include "../types.h"
|
2015-01-22 22:06:24 -08:00
|
|
|
|
2015-01-23 18:37:10 -08:00
|
|
|
u8* lz11_compress(u8* input, u32 inputSize, u32* size);
|
2015-01-22 22:06:24 -08:00
|
|
|
|
|
|
|
|
#endif
|