From bb93ac335846424662212eea840859e7f0cc16b5 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 21 Oct 2013 22:05:29 -0400 Subject: split inet_addr and inet_ntoa back into their own files despite being practically deprecated, these functions are still part of the standard and thus cannot reside in a file that also contains namespace pollution. this reverts some of the changes made in commit e40f48a421a9176e3e298b5bac75f0355b219e58. --- src/network/inet_ntoa.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/network/inet_ntoa.c (limited to 'src/network/inet_ntoa.c') diff --git a/src/network/inet_ntoa.c b/src/network/inet_ntoa.c new file mode 100644 index 00000000..71411e0b --- /dev/null +++ b/src/network/inet_ntoa.c @@ -0,0 +1,10 @@ +#include +#include + +char *inet_ntoa(struct in_addr in) +{ + static char buf[16]; + unsigned char *a = (void *)∈ + snprintf(buf, sizeof buf, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]); + return buf; +} -- cgit v1.2.1