/usr/include/ip4.h is in libowfat-dev 0.28-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #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
#define FMT_IP4 20
extern const char ip4loopback[4]; /* = {127,0,0,1};*/
#endif
|