table of contents
scan_ip6_flat(3) | Library Functions Manual | scan_ip6_flat(3) |
NAME¶
scan_ip6_flat - parse an IPv6 number in flat ASCII representationSYNTAX¶
#include <ip6.h>DESCRIPTION¶
scan_ip6_flat parses an IPv6 number in flat ASCII representation from src and writes the result into ip. It returns the number of bytes read from src or 0 if the parsing failed.EXAMPLE¶
#include <str.h>char buf[]="00000000000000000000000000000001";
char ip[16];
if (scan_ip6_flat(buf,ip) != str_len(buf))
parse_error();