Files
bannertool/source/3ds/lz11.h

8 lines
121 B
C
Raw Permalink Normal View History

#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
2017-02-17 23:47:03 -08:00
void* lz11_compress(u32* size, void* input, u32 inputSize);
2015-01-22 22:06:24 -08:00
#endif