4 * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
5 * Copyright 1999, 2000, 2001 Bernardo Innocenti <bernie@develer.com>
6 * This file is part of DevLib - See devlib/README for information.
9 * \brief General-purpose run-length {en,de}coding algorithm (interface)
12 * \author Bernardo Innocenti <bernie@develer.com>
17 *#* Revision 1.2 2004/08/25 14:12:09 rasky
18 *#* Aggiornato il comment block dei log RCS
20 *#* Revision 1.1 2004/08/04 02:35:54 bernie
21 *#* Import simple RLE algorithm.
27 int rle(unsigned char *output, const unsigned char *input, int length);
28 int unrle(unsigned char *output, const unsigned char *input);