mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
8 lines
162 B
C
8 lines
162 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int __ftoa_engine(double val, char *buf,
|
||
|
unsigned char prec, unsigned char maxdgs)
|
||
|
{
|
||
|
return sprintf(buf, "%*.*lf", prec, maxdgs, val);
|
||
|
}
|