This is the mail archive of the
newlib@sourceware.org
mailing list for the newlib project.
[PATCH 112/114] Add implementation of inet_ntoa function for Phoenix.
- From: Jakub Sejdak <jakub dot sejdak at phoesys dot com>
- To: newlib at sourceware dot org
- Cc: Kuba Sejdak <jakub dot sejdak at phoesys dot com>
- Date: Mon, 11 Apr 2016 12:26:16 +0200
- Subject: [PATCH 112/114] Add implementation of inet_ntoa function for Phoenix.
- Authentication-results: sourceware.org; auth=none
- References: <1460370378-5412-1-git-send-email-jakub dot sejdak at phoesys dot com>
From: Kuba Sejdak <jakub.sejdak@phoesys.com>
---
newlib/libc/sys/phoenix/net/inet_ntoa.c | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
create mode 100644 newlib/libc/sys/phoenix/net/inet_ntoa.c
diff --git a/newlib/libc/sys/phoenix/net/inet_ntoa.c b/newlib/libc/sys/phoenix/net/inet_ntoa.c
new file mode 100644
index 0000000..2c4f079
--- /dev/null
+++ b/newlib/libc/sys/phoenix/net/inet_ntoa.c
@@ -0,0 +1,29 @@
+/* Copyright (C) 2012-2016 Phoenix Systems (http://www.phoesys.com/).
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, write to the Free
+ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA. */
+
+#include <stdio.h>
+#include <arpa/inet.h>
+
+static char static_buffer[18];
+
+char *inet_ntoa(struct in_addr in)
+{
+ unsigned char *bytes = (unsigned char *) ∈
+ snprintf(static_buffer, sizeof(static_buffer), "%d.%d.%d.%d", bytes[0], bytes[1], bytes[2], bytes[3]);
+ return static_buffer;
+}
--
2.5.0