mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
299 B
15 lines
299 B
#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
|
|
|