struct hostent has no longer a member h_addr
Current netdb.h lacks support for the old h_addr pointer without
special USE_GNU defines...
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");
}
}