12 lines
211 B
C
12 lines
211 B
C
#pragma once
|
|
typedef struct _haddr {
|
|
void *addr;
|
|
int len;
|
|
int type;
|
|
} myHaddr_t ;
|
|
|
|
extern void sub_gethostbyname(const char *);
|
|
extern void sub_gethostent();
|
|
extern void sub_gethostbyaddr(myHaddr_t * );
|
|
|