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
commit7465fa182f3ed748184ed7e10999a5e02f722aef (patch)
tree8d363a646dbce0c70258ae5232123128ad87535d /src/util.h
parent03eaa13bcff97661c67b3f2ba1c62147c5ba846c (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*);