/* * Copyright (c) 1983, 1993 * The Regents of the University of California. All rights reserved. * * %sccs.include.redist.c% * * @(#)inet.h 8.1 (Berkeley) 06/02/93 */ #ifndef _INET_H_ #define _INET_H_ /* External definitions for functions in inet(3) */ #include __BEGIN_DECLS unsigned long inet_addr __P((const char *)); int inet_aton __P((const char *, struct in_addr *)); unsigned long inet_lnaof __P((struct in_addr)); struct in_addr inet_makeaddr __P((u_long , u_long)); unsigned long inet_netof __P((struct in_addr)); unsigned long inet_network __P((const char *)); char *inet_ntoa __P((struct in_addr)); __END_DECLS #endif /* !_INET_H_ */