Initial commit.

This commit is contained in:
Steveice10
2015-01-22 22:06:24 -08:00
commit 78ee395ea5
11 changed files with 8109 additions and 0 deletions

8
source/lz11.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef __LZ11_H__
#define __LZ11_H__
#include "types.h"
u8* compress_lz11(u8* input, u32 inputSize, u32* size);
#endif