aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorame <[email protected]>2024-02-29 16:01:36 -0600
committerame <[email protected]>2024-02-29 16:01:36 -0600
commit1d2c4b59879a6f96edd2f8f86d6313a97c856d26 (patch)
tree8d363a646dbce0c70258ae5232123128ad87535d /src/util.h
parent35b031031f27be93bf2f22ba173f30b64881adff (diff)
working on 'rolling' parsing
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index 864108d..c68054d 100644
--- a/src/util.h
+++ b/src/util.h
@@ -23,7 +23,7 @@
#define color_reset "\e[0m"
#define i_swap(A,B) double temp = A; A = B; B = temp;
-
+#define lesser(A,B) (A>B?B:A)
int gen_parse(char*,int, parray_t**);
void p_fatal(const char*);
void p_error(const char*);