X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Frle.h;h=61693a6862141ebe5e4f62b3c89014159e49ccb2;hb=HEAD;hp=04b47f465ef55608e0d25402900c379dd985cf95;hpb=5f3952176a4e9a00ca8dd5ec4a6b994958f89e0a;p=bertos.git diff --git a/mware/rle.h b/mware/rle.h deleted file mode 100644 index 04b47f46..00000000 --- a/mware/rle.h +++ /dev/null @@ -1,36 +0,0 @@ -/** - * \file - * - * - * \brief General-purpose run-length {en,de}coding algorithm (interface) - * - * \version $Id$ - * \author Bernardo Innocenti - */ - -/*#* - *#* $Log$ - *#* Revision 1.4 2006/07/19 12:56:28 bernie - *#* Convert to new Doxygen style. - *#* - *#* Revision 1.3 2005/11/04 16:20:02 bernie - *#* Fix reference to README.devlib in header. - *#* - *#* Revision 1.2 2004/08/25 14:12:09 rasky - *#* Aggiornato il comment block dei log RCS - *#* - *#* Revision 1.1 2004/08/04 02:35:54 bernie - *#* Import simple RLE algorithm. - *#* - *#*/ -#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 */