1998-01-09 06:15:09 +03:00
|
|
|
/* $NetBSD: numtoa.c,v 1.2 1998/01/09 03:16:26 perry Exp $ */
|
|
|
|
|
1997-04-18 17:22:49 +04:00
|
|
|
/*
|
|
|
|
* numtoa - return asciized network numbers store in local array space
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "ntp_fp.h"
|
|
|
|
#include "lib_strbuf.h"
|
|
|
|
#include "ntp_stdlib.h"
|
|
|
|
|
|
|
|
char *
|
|
|
|
numtoa(num)
|
|
|
|
u_int32 num;
|
|
|
|
{
|
|
|
|
register u_int32 netnum;
|
|
|
|
register char *buf;
|
|
|
|
|
|
|
|
netnum = ntohl(num);
|
|
|
|
LIB_GETBUF(buf);
|
|
|
|
(void) sprintf(buf, "%lu.%lu.%lu.%lu", ((u_long)netnum >> 24) & 0xff,
|
|
|
|
((u_long)netnum >> 16) & 0xff, ((u_long)netnum >> 8) & 0xff,
|
|
|
|
(u_long)netnum & 0xff);
|
|
|
|
return buf;
|
|
|
|
}
|