1 2 3 4 5 6 7
void UTFT::_convert_float(char *buf, double num, int width, byte prec) { char format[10]; sprintf(format, "%%%i.%if", width, prec); sprintf(buf, format, num); }