diff options
Diffstat (limited to 'shared/util.h')
-rw-r--r-- | shared/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shared/util.h b/shared/util.h new file mode 100644 index 0000000..f39ff34 --- /dev/null +++ b/shared/util.h @@ -0,0 +1,4 @@ +#pragma once + +#define WS_MIN(a, b) (((a) < (b)) ? (a) : (b)) +#define WS_MAX(a, b) (((a) > (b)) ? (a) : (b)) |