00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __INET_NTOA_R_H 00006 #define __INET_NTOA_R_H 00007 00008 #include "setup.h" 00009 00010 #ifdef HAVE_INET_NTOA_R_2_ARGS 00011 00012 char *inet_ntoa_r(const struct in_addr in, char buffer[]); 00013 00014 #else 00015 00016 char *inet_ntoa_r(const struct in_addr in, char *buffer, int buflen); 00017 00018 #endif 00019 00020 #endif
1.5.6