Committing progress

This commit is contained in:
2022-01-13 08:06:53 -08:00
parent 5620d6c517
commit 0cbc9a8d52
4 changed files with 82 additions and 24 deletions

View File

@@ -9,4 +9,5 @@
#include "libs.h"
#define MATH_MIN(a, b) a > b ? b : a
#define MATH_MAX(a, b) a < b ? b : a
#define MATH_MAX(a, b) a < b ? b : a
#define MATH_ABS(n) (n < 0 ? -n : n)