1 #pragma ident "%Z%%M% %I% %E% SMI" 2 /* 3 * Copyright (c) 1983 Regents of the University of California. 4 * All rights reserved. The Berkeley software License Agreement 5 * specifies the terms and conditions for redistribution. 6 */ 7 8 /* 9 * External definitions for 10 * functions in inet(3N) 11 */ 12 13 #ifndef _arpa_inet_h 14 #define _arpa_inet_h 15 16 unsigned long inet_addr(); 17 char *inet_ntoa(); 18 struct in_addr inet_makeaddr(); 19 unsigned long inet_network(); 20 21 #endif /*!_arpa_inet_h*/ 22