git » fp-git.git » master » tree

[master] / stuff / contest / lzg / lzg_compress.h

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