You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
299 B
C
16 lines
299 B
C
#ifndef IP4_H
|
|
#define IP4_H
|
|
|
|
unsigned int scan_ip4(const char *src,char *ip);
|
|
unsigned int fmt_ip4(char *dest,const char *ip);
|
|
|
|
/* for djb backwards compatibility */
|
|
#define ip4_scan scan_ip4
|
|
#define ip4_fmt fmt_ip4
|
|
|
|
#define IP4_FMT 20
|
|
|
|
extern const char ip4loopback[4]; /* = {127,0,0,1};*/
|
|
|
|
#endif
|