summaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authornoodle <shawtynoodle@gmail.com>2023-07-10 15:40:08 +0300
committernoodle <shawtynoodle@gmail.com>2023-07-10 15:40:08 +0300
commitb7ac144cd2d242791938b51569effb7a1378a332 (patch)
tree0db39dc6d72a96697707c662c32f4dcdb99372b7 /utils.c
parent35eacac40f265aad47bf25d10f3ecd3670b79b2f (diff)
Add files
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/utils.c b/utils.c
new file mode 100644
index 0000000..e3f79f9
--- /dev/null
+++ b/utils.c
@@ -0,0 +1,25 @@
+#include <stddef.h> // for int
+#include <math.h> // for floorf()
+#include "utils.h"
+
+int
+min_int(int a, int b)
+{
+ return (a < b) ? a : b;
+}
+size_t
+min_size_t(size_t a, size_t b)
+{
+ return (a < b) ? a : b;
+}
+
+int
+max_int(int a, int b)
+{
+ return (a > b) ? a : b;
+}
+size_t
+max_size_t(size_t a, size_t b)
+{
+ return (a > b) ? a : b;
+}