| 18 | #define COLOR_GREEN "\033[32m" |
| 19 | |
| 20 | int approximatelyEqual(float a, float b, float epsilon) { |
| 21 | return fabsf(a - b) <= epsilon; |
| 22 | } |
| 23 | |
| 24 | void printResult(bool passed, const char *message, float input, float output) { |
| 25 | if (passed) { |
no outgoing calls
no test coverage detected