aboutsummaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authorc2024-01-28 22:58:01 -0500
committerc2024-01-28 22:58:01 -0500
commit0b84414bdde53b367bc28563a6936513c4d3b50c (patch)
treee7f650d47d0295049d3f5e8fa9164080dacaee45 /src/util.c
parentca20ff4f4d0ac63856e538f9f4cef97197bf6465 (diff)
Macro Hell.
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util.c b/src/util.c
index a35af14..b2a8b07 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1,6 +1,7 @@
#include "include/util.h"
void log_dbg(const char* fmt, ...) {
+ WFDEPRECATED;
va_list ap;
fprintf(stdout, "");
@@ -14,6 +15,7 @@ void log_dbg(const char* fmt, ...) {
}
void log_yay(const char* fmt, ...) {
+ WFDEPRECATED;
va_list ap;
fprintf(stdout, "\x1b[37m[\x1b[92;1m==\x1b[0m\x1b[37m]\x1b[32m ");
@@ -26,6 +28,7 @@ void log_yay(const char* fmt, ...) {
}
void log_inf(const char* fmt, ...) {
+ WFDEPRECATED;
va_list ap;
fprintf(stderr, "\x1b[37m[\x1b[94;1m==\x1b[0m\x1b[37m]\x1b[0m ");
@@ -38,6 +41,7 @@ void log_inf(const char* fmt, ...) {
}
void log_raw(const char* fmt, ...) {
+ WFDEPRECATED;
va_list ap;
va_start(ap, fmt);
@@ -46,6 +50,7 @@ void log_raw(const char* fmt, ...) {
}
void log_war(const char* fmt, ...) {
+ WFDEPRECATED;
va_list ap;
fprintf(stderr, "\x1b[37m[\x1b[93;1m==\x1b[0m\x1b[37m]\x1b[93;1m WARNING:\x1b[0m\x1b[33m ");
@@ -58,6 +63,7 @@ void log_war(const char* fmt, ...) {
}
void log_err(const char* fmt, ...) {
+ WFDEPRECATED;
va_list ap;
fprintf(stderr, "\x1b[37m[\x1b[91;1m==\x1b[0m\x1b[37m]\x1b[91;1m ERROR:\x1b[0m\x1b[31m ");
@@ -70,6 +76,7 @@ void log_err(const char* fmt, ...) {
}
void die(const char* fmt, ...) {
+ WFDEPRECATED;
va_list ap;
fprintf(stderr, "\x1b[37m[\x1b[91;1m==\x1b[0m\x1b[37m]\x1b[91;1m CAUSE OF DEATH:\x1b[0m\x1b[31m ");