clplaner: Avoid a segfault on Wed May 27 20:00 CET 2009
* The IndexShaker would crash on the last two teams - fixed
committer: Markus Bröker <mbroeker@largo.homelinux.org>
/** * lsflib/src/hexdump.c * Copyright (C) 2008 Markus Broeker */#include <stdio.h>void hexdump (char *s, int len){ int i; for (i = 0; i < len; i++) { printf ("%02X ", s[i]); if ((i % 40) == 0) printf ("\n"); }}