i still have no idea where the bug is

This commit is contained in:
2022-04-21 18:34:05 +03:00
parent 2aee6af0ca
commit 501ab9cd56
2 changed files with 10 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ void printMaybe(Maybe e);
#define __RETURN_EXCEPTION(ERRMSG) return (Maybe){.errmsg=ERRMSG, .value=UniNull}
#define __EXIT(ERRMSG) ({ printf("\e[91m%s\e[0m \n", ERRMSG); exit(128); })
#define __EXIT(ERRMSG) ({ printf("\e[91m%s\e[0m \n", ERRMSG); free(ERRMSG); exit(128); })
char* __doNothing(char* a);
char* __unknownErr( );