summaryrefslogtreecommitdiff
path: root/include/arpa/inet.h
blob: cf4cd3275bc78a0679564ea0c800f607592ab42d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __ARPA_INET_H
#define __ARPA_INET_H

#include <netinet/in.h>

int inet_aton(const char *cp, struct in_addr *inp);
      
unsigned long int inet_addr(const char *cp);

char *inet_ntoa(struct in_addr in);
       
#endif