aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authoramy <[email protected]>2023-04-18 07:20:59 +0000
committeramy <[email protected]>2023-04-18 07:20:59 +0000
commite7331cb0c98260c3bb979e4b58aed4a043e6299f (patch)
treeec634f718b546d30c77faed21995c06b827e7023 /src/util.h
parentc5112eebddcc7628cb6f3c8da7ad066e57961f16 (diff)
backup :p
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index a1bd599..5a730f3 100644
--- a/src/util.h
+++ b/src/util.h
@@ -4,6 +4,8 @@
#ifndef __util__
#define __util__
#include "string.h"
+#define greater(a,b) (a>b?a:b)
+#define lesser(a,b) (a>b?b:a)
void err_m(char*,void (*)(int),char*,int);
void warn_m(char*,char*,int ,...);
void info_m(char*,char*,int ,...);