You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
305 B
C

#include "fmt.h"
#include "ip4.h"
unsigned int fmt_ip4(char *s,const char ip[4])
{
unsigned int len;
int i;
len = 0;
for (i=0; i<4; ++i) {
register unsigned int j;
len+=(j=fmt_ulong(s,(unsigned long) (unsigned char) ip[i]))+1;
if (s && i<3) { s+=j; *s++='.'; }
}
return len-1;
}