Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / mware / rle.h
1 /**
2  * \file
3  * <!--
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 README.devlib for information.
7  * -->
8  *
9  * \brief General-purpose run-length {en,de}coding algorithm (interface)
10  *
11  * \version $Id$
12  * \author Bernardo Innocenti <bernie@develer.com>
13  */
14
15 /*#*
16  *#* $Log$
17  *#* Revision 1.4  2006/07/19 12:56:28  bernie
18  *#* Convert to new Doxygen style.
19  *#*
20  *#* Revision 1.3  2005/11/04 16:20:02  bernie
21  *#* Fix reference to README.devlib in header.
22  *#*
23  *#* Revision 1.2  2004/08/25 14:12:09  rasky
24  *#* Aggiornato il comment block dei log RCS
25  *#*
26  *#* Revision 1.1  2004/08/04 02:35:54  bernie
27  *#* Import simple RLE algorithm.
28  *#*
29  *#*/
30 #ifndef RLE_H
31 #define RLE_H
32
33 int rle(unsigned char *output, const unsigned char *input, int length);
34 int unrle(unsigned char *output, const unsigned char *input);
35
36 #endif /* RLE_H */