mirror of
https://github.com/btclock/btclock_v3.git
synced 2024-11-19 06:20:02 +01:00
13 lines
259 B
C++
13 lines
259 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <cmath>
|
|
#include <cstdint>
|
|
#include <sstream>
|
|
#include <iomanip>
|
|
|
|
int modulo(int x,int N);
|
|
|
|
double getSupplyAtBlock(std::uint32_t blockNr);
|
|
|
|
std::string formatNumberWithSuffix(std::uint64_t num, int numCharacters = 4); |