2015-01-23 06:06:24 +00:00
|
|
|
#ifndef __LZ11_H__
|
|
|
|
#define __LZ11_H__
|
|
|
|
|
2015-01-24 06:46:15 +00:00
|
|
|
#include "../types.h"
|
2015-01-23 06:06:24 +00:00
|
|
|
|
2015-01-24 02:37:10 +00:00
|
|
|
u8* lz11_compress(u8* input, u32 inputSize, u32* size);
|
2015-01-23 06:06:24 +00:00
|
|
|
|
|
|
|
#endif
|