update case mappings to unicode 12.1.0
[musl.git] / src / network / ether.c
blob4304a972fe5affea6cf5d24a1e802a9043e9fa83
1 #include <stdlib.h>
2 #include <netinet/ether.h>
3 #include <stdio.h>
5 struct ether_addr *ether_aton_r (const char *x, struct ether_addr *p_a)
7 struct ether_addr a;
8 char *y;
9 for (int ii = 0; ii < 6; ii++) {
10 unsigned long int n;
11 if (ii != 0) {
12 if (x[0] != ':') return 0; /* bad format */
13 else x++;
15 n = strtoul (x, &y, 16);
16 x = y;
17 if (n > 0xFF) return 0; /* bad byte */
18 a.ether_addr_octet[ii] = n;
20 if (x[0] != 0) return 0; /* bad format */
21 *p_a = a;
22 return p_a;
25 struct ether_addr *ether_aton (const char *x)
27 static struct ether_addr a;
28 return ether_aton_r (x, &a);
31 char *ether_ntoa_r (const struct ether_addr *p_a, char *x) {
32 char *y;
33 y = x;
34 for (int ii = 0; ii < 6; ii++) {
35 x += sprintf (x, ii == 0 ? "%.2X" : ":%.2X", p_a->ether_addr_octet[ii]);
37 return y;
40 char *ether_ntoa (const struct ether_addr *p_a) {
41 static char x[18];
42 return ether_ntoa_r (p_a, x);
45 int ether_line(const char *l, struct ether_addr *e, char *hostname)
47 return -1;
50 int ether_ntohost(char *hostname, const struct ether_addr *e)
52 return -1;
55 int ether_hostton(const char *hostname, struct ether_addr *e)
57 return -1;