diff options
author | amy <[email protected]> | 2023-04-18 07:20:59 +0000 |
---|---|---|
committer | amy <[email protected]> | 2023-04-18 07:20:59 +0000 |
commit | e7331cb0c98260c3bb979e4b58aed4a043e6299f (patch) | |
tree | ec634f718b546d30c77faed21995c06b827e7023 /src/util.h | |
parent | c5112eebddcc7628cb6f3c8da7ad066e57961f16 (diff) |
backup :p
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 ,...); |