algo/rle.h

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