1 #include <cmath>
2 #include <cstdint>
3 
logarithm(uint16_t v)4 inline double logarithm(uint16_t v) {
5   return log(v);
6 }
7 
8 bool loopWords();
9