seq.c | 456 * decimal_places - count decimal places in a number (string) 461 int places = 0; local in function:decimal_places 469 places++; 471 return (places); 486 int precision, width1, width2, places; local in function:generate_format 505 if ((places = decimal_places(buf))) 506 width1 -= (places + strlen(decimal_point)); 508 precision = MAX(places, precision); 513 if ((places = decimal_places(buf))) 514 width2 -= (places + strlen(decimal_point)) [all...] |