Всем спасибо ! Уже сам разобрался.
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <stdio.h>
#include <memory.h>
int host_name( (char*)addr )
{
struct in_addr in;
struct hostent *hp;
if( inet_aton( addr, &in ) )
if( ( hp = gethostbyaddr( (char*)&in.s_addr, sizeof( in.s_addr ), AF_INET ) ) )
printf( hp->h_name );
else
printf( ⌠error■ );
else
printf( ⌠error■ );
return 0;
}
int host_addr( (char*)name )
{
struct hostent *hp;
struct in_addr in;
if( ( hp = gethostbyname( name ) ) )
{
memcpy ( (char*)&in.s_addr, hp->h_addr, 4 );
printf( inet_ntoa( in ) );
}
else
printf( ⌠error■ );
return 0;
}