algo/rle.h

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