libowfat/ip4.h

26 lines
448 B
C
Raw Normal View History

/* this header file comes from libowfat, http://www.fefe.de/libowfat/ */
#ifndef IP4_H
#define IP4_H
#ifdef __cplusplus
extern "C" {
#endif
2014-03-14 19:42:54 +00:00
size_t scan_ip4(const char *src,char *ip);
size_t fmt_ip4(char *dest,const char *ip);
2001-02-05 22:03:11 +00:00
/* for djb backwards compatibility */
#define ip4_scan scan_ip4
#define ip4_fmt fmt_ip4
#define IP4_FMT 20
#define FMT_IP4 20
2001-02-05 22:03:11 +00:00
extern const char ip4loopback[4]; /* = {127,0,0,1};*/
#ifdef __cplusplus
}
#endif
#endif