4.3BSD-UWisc/src/lib/libc/inet/inet_ntoa.c
#if defined(LIBC_RCS) && !defined(lint)
static char rcs_id[] =
"$Header: inet_ntoa.c,v 1.2 86/09/08 14:46:18 tadl Exp $";
#endif
/*
* RCS info
* $Locker: $
*/
/*
* Copyright (c) 1983 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)inet_ntoa.c 5.2 (Berkeley) 3/9/86";
#endif LIBC_SCCS and not lint
/*
* Convert network-format internet address
* to base 256 d.d.d.d representation.
*/
#include <sys/types.h>
#include <netinet/in.h>
char *
inet_ntoa(in)
struct in_addr in;
{
static char b[18];
register char *p;
p = (char *)∈
#define UC(b) (((int)b)&0xff)
sprintf(b, "%d.%d.%d.%d", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3]));
return (b);
}