4 * numtoa - return asciized network numbers store in local array space
9 #include "lib_strbuf.h"
10 #include "ntp_stdlib.h"
17 register u_int32 netnum
;
22 (void) sprintf(buf
, "%lu.%lu.%lu.%lu", ((u_long
)netnum
>> 24) & 0xff,
23 ((u_long
)netnum
>> 16) & 0xff, ((u_long
)netnum
>> 8) & 0xff,
24 (u_long
)netnum
& 0xff);