bannertool/source/3ds/lz11.h
Dorian Wouters fdb409573f Fix header include guards names
Symbols starting with two underscores are reserved, as per the C
standard.
2016-01-27 16:49:48 +01:00

8 lines
117 B
C

#ifndef LZ11_H
#define LZ11_H
#include "../types.h"
u8* lz11_compress(u8* input, u32 inputSize, u32* size);
#endif