7 lines
125 B
C++
7 lines
125 B
C++
|
#ifndef HELPERS_HPP
|
||
|
#define HELPERS_HPP
|
||
|
|
||
|
bool floating_point_similar(double a, double b, unsigned char decimal = 5);
|
||
|
|
||
|
#endif
|