a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/rle.c src/lib/rle.c index 6207f54..58ff09b 100644 --- src/lib/rle.c +++ src/lib/rle.c @@ -1,24 +1,23 @@ /* rle - byte oriented run length encoding. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "rle.h" -static char const rcsid[] = "$Id: rle.c,v 1.6 2005/05/10 00:50:16 markd Exp $"; static int countSameAsStart(signed char *s, int max) /* Count number of signed chars that are the same as first. */ { signed char v = *s; int i; if (max > 127) max = 127; for (i=1; i<max; ++i) if (s[i] != v) break; return i; } int rleCompress(void *vIn, int inSize, signed char *out)