#pragma once #include inline static bool float_equal(float a, float b) { const float epsilon = 0.00001; return __builtin_fabs(a - b) < epsilon; }