1 2 3 4 5 6 7
#ifndef _LZG_COMPRESS_H_ #define _LZG_COMPRESS_H_ void compressLzg(const unsigned char* input, int inputSize, unsigned char* output, int *outputSize); #endif