Azur/libnum/src/str.cpp

11 lines
264 B
C++
Raw Normal View History

2022-06-02 22:18:28 +02:00
#include <num/num.h>
using namespace num;
2022-06-02 22:18:28 +02:00
/* 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;
2022-06-02 22:18:28 +02:00
}