Adjust fileList from perl
[msysgit.git] / include / arpa / inet.h
blobdc144d6b85d972fb5d01b3307c87105364812875
1 /* arpa/inet.h
3 Copyright 1997, 1998, 2001 Red Hat, Inc.
5 This file is part of Cygwin.
7 This software is a copyrighted work licensed under the terms of the
8 Cygwin license. Please consult the file "CYGWIN_LICENSE" for
9 details. */
11 #ifndef _ARPA_INET_H
12 #define _ARPA_INET_H
14 #include <netinet/in.h>
16 #ifdef __cplusplus
17 extern "C"
19 #endif
21 #ifndef __INSIDE_CYGWIN_NET__
22 unsigned long inet_addr (const char *);
23 int inet_aton (const char *, struct in_addr *);
24 unsigned long inet_lnaof (struct in_addr);
25 struct in_addr inet_makeaddr (unsigned long , unsigned long);
26 unsigned int inet_netof (struct in_addr);
27 unsigned int inet_network (const char *);
28 char *inet_ntoa (struct in_addr);
29 #endif
31 #ifdef __cplusplus
33 #endif
35 #endif /* _ARPA_INET_H */