debian man page for fmt_ip4

Query: fmt_ip4

OS: debian

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

fmt_ip4(3)						     Library Functions Manual							fmt_ip4(3)

NAME
fmt_ip4 - write a formatted ASCII representation of an IPv4 number
SYNTAX
#include <ip4.h> unsigned int fmt_ip4(char *dest,const char ip[4]);
DESCRIPTION
fmt_ip4 formats an IPv4 number in dotted-decimal ASCII representation from ip and writes the result into dest. It returns the number of bytes written. If dest equals FMT_LEN (i.e. is zero), fmt_ip4 returns the number of bytes it would have written. fmt_ip4 does not append . For convenience, ip4.h defines the integer IP4_FMT to be big enough to contain every possible fmt_ip4 output plus .
EXAMPLE
#include <ip4.h> char buf[IP4_FMT]; char ip[4]; buf[fmt_ip4(buf,ip)]=0;
SEE ALSO
scan_ip4(3), fmt_ip6(3), inet_ntop(3) fmt_ip4(3)
Related Man Pages
strncat(3) - centos
strcat(3) - linux
strcpy(3) - linux
scan_ip6(3) - debian
strcpy(3) - suse
Similar Topics in the Unix Linux Community
Adding the individual columns of a matrix.
awk or sed - Convert 2 lines to 1 line
Is UNIX an open source OS ?
Detecting unused variables...
Find columns in a file based on header and print to new file