root/win32/inet.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. inet_aton

   1 #include "inet.h"
   2 
   3 int inet_aton(const char *cp, struct in_addr *inp) {
   4   inp->s_addr = inet_addr(cp);
   5 
   6   if (inp->s_addr == INADDR_NONE) {
   7           return 0;
   8   }
   9 
  10   return 1;
  11 }

/* [<][>][^][v][top][bottom][index][help] */