Organize code structure, generate CBMD files without premade headers.

This commit is contained in:
Steven Smith
2015-01-23 18:37:10 -08:00
parent 2e75e2c9cc
commit 239547097f
13 changed files with 245 additions and 103 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef __LZ11_H__
#define __LZ11_H__
#include "types.h"
u8* lz11_compress(u8* input, u32 inputSize, u32* size);
#endif