/contrib/ntp/libntp/numtoa.c

https://bitbucket.org/freebsd/freebsd-head/ · C · 24 lines · 18 code · 3 blank · 3 comment · 0 complexity · 618b3d0533341e312c03e017226dc266 MD5 · raw file

  1. /*
  2. * numtoa - return asciized network numbers store in local array space
  3. */
  4. #include <stdio.h>
  5. #include "ntp_fp.h"
  6. #include "lib_strbuf.h"
  7. #include "ntp_stdlib.h"
  8. char *
  9. numtoa(
  10. u_int32 num
  11. )
  12. {
  13. register u_int32 netnum;
  14. register char *buf;
  15. netnum = ntohl(num);
  16. LIB_GETBUF(buf);
  17. (void) sprintf(buf, "%lu.%lu.%lu.%lu", ((u_long)netnum >> 24) & 0xff,
  18. ((u_long)netnum >> 16) & 0xff, ((u_long)netnum >> 8) & 0xff,
  19. (u_long)netnum & 0xff);
  20. return buf;
  21. }