9 lines
112 B
C++
9 lines
112 B
C++
#include <cmath>
|
|
#include <cstdint>
|
|
|
|
inline double logarithm(uint8_t v) {
|
|
return log(v);
|
|
}
|
|
|
|
bool loopBytes();
|