diff options
author | noodle <shawtynoodle@gmail.com> | 2023-07-10 15:40:08 +0300 |
---|---|---|
committer | noodle <shawtynoodle@gmail.com> | 2023-07-10 15:40:08 +0300 |
commit | b7ac144cd2d242791938b51569effb7a1378a332 (patch) | |
tree | 0db39dc6d72a96697707c662c32f4dcdb99372b7 /utils.c | |
parent | 35eacac40f265aad47bf25d10f3ecd3670b79b2f (diff) |
Add files
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -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; +} |