Adjusted to show side effects and their handling
When dealing with static buffers, successive calls point
to the same memory location and overwrite formers ones...
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");
}
}