Azur/libnum/src/str.cpp

11 lines
267 B
C++

#include <num/num.h>
using namespace libnum;
/* Digits of the decimal part, from most to least significant. Returns the
number of digits (which is 0 when x=0) */
static int decimal_digits(char *str, num64 x)
{
// x = mod_64(x, num64_const(1));
return 0;
}