rle.h
Go to the documentation of this file.00001 00040 /*#* 00041 *#* $Log$ 00042 *#* Revision 1.4 2006/07/19 12:56:28 bernie 00043 *#* Convert to new Doxygen style. 00044 *#* 00045 *#* Revision 1.3 2005/11/04 16:20:02 bernie 00046 *#* Fix reference to README.devlib in header. 00047 *#* 00048 *#* Revision 1.2 2004/08/25 14:12:09 rasky 00049 *#* Aggiornato il comment block dei log RCS 00050 *#* 00051 *#* Revision 1.1 2004/08/04 02:35:54 bernie 00052 *#* Import simple RLE algorithm. 00053 *#* 00054 *#*/ 00055 #ifndef RLE_H 00056 #define RLE_H 00057 00058 int rle(unsigned char *output, const unsigned char *input, int length); 00059 int unrle(unsigned char *output, const unsigned char *input); 00060 00061 #endif /* RLE_H */
