Report message to a moderator
I have not found that in the library. Here is the implementation. double roundd ( double n, int decimals ) { double p = ipow10 ( decimals ); return floor ( n*p + 0.5 ) / p; }