summaryrefslogtreecommitdiff
path: root/ip.h
blob: b99002f5d506425406bd0e34100e245a4f080ffc (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef IP_H
#define IP_H

struct ip_address { unsigned char d[4]; } ;

extern unsigned int ip_fmt();
#define IPFMT 19
extern unsigned int ip_scan();
extern unsigned int ip_scanbracket();

#endif