Searched defs:decimal (Results 1 - 1 of 1) sorted by relevance

/bind-9.11.3/bin/named/
H A Dbuiltin.c87 const unsigned char decimal[] = "0123456789"; variable
99 rdata[j++] = decimal[c/100]; c = c % 100;
100 rdata[j++] = decimal[c/10]; c = c % 10;
101 rdata[j++] = decimal[c];
104 rdata[j++] = decimal[c/10]; c = c % 10;
105 rdata[j++] = decimal[c];
108 rdata[j++] = decimal[c];

Completed in 11 milliseconds