1*0Sstevel@tonic-gate /* $Id: inet_ntop.h,v 1.4 2001/08/09 00:56:53 mouring Exp $ */ 2*0Sstevel@tonic-gate 3*0Sstevel@tonic-gate #ifndef _INET_NTOP_H 4*0Sstevel@tonic-gate #define _INET_NTOP_H 5*0Sstevel@tonic-gate 6*0Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 7*0Sstevel@tonic-gate 8*0Sstevel@tonic-gate #ifdef __cplusplus 9*0Sstevel@tonic-gate extern "C" { 10*0Sstevel@tonic-gate #endif 11*0Sstevel@tonic-gate 12*0Sstevel@tonic-gate #include "config.h" 13*0Sstevel@tonic-gate 14*0Sstevel@tonic-gate #ifndef HAVE_INET_NTOP 15*0Sstevel@tonic-gate const char * 16*0Sstevel@tonic-gate inet_ntop(int af, const void *src, char *dst, size_t size); 17*0Sstevel@tonic-gate #endif /* !HAVE_INET_NTOP */ 18*0Sstevel@tonic-gate 19*0Sstevel@tonic-gate #ifdef __cplusplus 20*0Sstevel@tonic-gate } 21*0Sstevel@tonic-gate #endif 22*0Sstevel@tonic-gate 23*0Sstevel@tonic-gate #endif /* _INET_NTOP_H */ 24