Go to the documentation of this file.00001
00040 #ifndef RLE_H
00041 #define RLE_H
00042
00043 int rle(unsigned char *output, const unsigned char *input, int length);
00044 int unrle(unsigned char *output, const unsigned char *input);
00045
00046 #endif