ecat  5.1.2
compress.h
Go to the documentation of this file.
1 #ifndef compress_h
2 #define compress_h
3 
4 #if defined(__cplusplus)
5 extern "C" int compress(char* data, int size, int type, char* z_data);
6 extern "C" int uncompress(char* z_data, int size, char* data, int type);
7 #else
8 extern int compress();
9 extern int uncompress();
10 #endif /* __cplusplus */
11 
12 #endif /* compress_h */
int compress()
int uncompress()