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/xor.c
* Copyright (C) 2008 Markus Broeker
*/
#include <string.h>
char *xor (char *s, char key)
{
int i;
for (i = 0; i < strlen (s); i++)
s[i] ^= key;
return s;
}