From fc7edb22079845ccd548e2034ff7193ca54f47ea Mon Sep 17 00:00:00 2001 From: c Date: Sat, 27 Apr 2024 09:59:47 -0400 Subject: Doer things. --- src/include/tree.h | 6 ++++++ src/include/util.h | 2 ++ 2 files changed, 8 insertions(+) (limited to 'src/include') diff --git a/src/include/tree.h b/src/include/tree.h index 5e0279f..d22efc1 100644 --- a/src/include/tree.h +++ b/src/include/tree.h @@ -101,6 +101,12 @@ int tree_cmp(tree_t* tree_0, tree_t* tree_1); // Swaps a tree for another. void tree_swp_call(tree_t* t0, tree_t* t1); +// Determines if a tree_type_t matches a string. +int tree_type_str(tree_type_t tree_type, char* str); + +// Returns a string for a tree type. +char* tree_type2str(tree_type_t tree_type); + /* Print a tree. */ void tree_print(tree_t* tree, int nest); diff --git a/src/include/util.h b/src/include/util.h index 60db492..0d3090a 100644 --- a/src/include/util.h +++ b/src/include/util.h @@ -116,6 +116,7 @@ void die(const char*, ...); #define DIEF(fmt, ...) HIDE( \ fprintf(stderr, "\x1b[37m[\x1b[91;1m==\x1b[0m\x1b[37m]\x1b[91;1m CAUSE OF DEATH:\x1b[0m\x1b[31m "); \ + LOG_FINF; \ fprintf(stderr, fmt, ##__VA_ARGS__); \ fprintf(stderr, "\x1b[0m\n"); \ fprintf(stderr, "\x1b[37m[\x1b[91;1m==\x1b[0m\x1b[37m]\x1b[91;1m Exiting...\x1b[0m\n"); \ @@ -124,6 +125,7 @@ void die(const char*, ...); #define DIE(body) HIDE( \ fprintf(stderr, "\x1b[37m[\x1b[91;1m==\x1b[0m\x1b[37m]\x1b[91;1m CAUSE OF DEATH:\x1b[0m\x1b[31m "); \ + LOG_FINF; \ fprintf(stderr, body); \ fprintf(stderr, "\x1b[0m\n"); \ fprintf(stderr, "\x1b[37m[\x1b[91;1m==\x1b[0m\x1b[37m]\x1b[91;1m Exiting...\x1b[0m\n"); \ -- cgit v1.2.3