summaryrefslogtreecommitdiff
path: root/lib/libc/arpa/inet_pton.c
blob: 99e9f4eb21e6f25051c39d864f58dd3797523cae (plain)
1
2
3
4
5
6
7
8
9
10
#include <arpa/inet.h> // for inet_pton

int inet_pton(int af, const char *restrict src, void *restrict dst)
{
	(void)af;
	(void)src;
	(void)dst;
	// TODO
	return 0;
}