/** * \file * * * \brief General-purpose run-length {en,de}coding algorithm. * * \author Bernie Innocenti * * $WIZ$ module_name = "rle" */ #ifndef RLE_H #define RLE_H int rle(unsigned char *output, const unsigned char *input, int length); int unrle(unsigned char *output, const unsigned char *input); #endif /* RLE_H */