2016-01-27 16:42:15 +01:00
|
|
|
#ifndef LZ11_H
|
|
|
|
#define LZ11_H
|
2015-01-23 07:06:24 +01:00
|
|
|
|
2015-01-24 07:46:15 +01:00
|
|
|
#include "../types.h"
|
2015-01-23 07:06:24 +01:00
|
|
|
|
2017-02-18 08:47:03 +01:00
|
|
|
void* lz11_compress(u32* size, void* input, u32 inputSize);
|
2015-01-23 07:06:24 +01:00
|
|
|
|
|
|
|
#endif
|