mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-16 00:01:34 +00:00
16 lines
288 B
C
16 lines
288 B
C
|
#ifndef RESOLV_H
|
||
|
#define RESOLV_H
|
||
|
|
||
|
#include "in.h"
|
||
|
#include "tables.h"
|
||
|
|
||
|
struct resolver {
|
||
|
int ( * resolv ) ( struct in_addr *address, const char *name );
|
||
|
};
|
||
|
|
||
|
#define __resolver __table(resolver,01)
|
||
|
|
||
|
extern int resolv ( struct in_addr *address, const char *name );
|
||
|
|
||
|
#endif /* RESOLV_H */
|