8 lines
173 B
C
8 lines
173 B
C
|
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);
|
||
|
}
|