summaryrefslogtreecommitdiff
path: root/BFS/support/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'BFS/support/utils.h')
-rw-r--r--BFS/support/utils.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/BFS/support/utils.h b/BFS/support/utils.h
deleted file mode 100644
index ccd8fbd..0000000
--- a/BFS/support/utils.h
+++ /dev/null
@@ -1,10 +0,0 @@
-
-#ifndef _UTILS_H_
-#define _UTILS_H_
-
-#define PRINT_ERROR(fmt, ...) fprintf(stderr, "\033[0;31mERROR:\033[0m " fmt "\n", ##__VA_ARGS__)
-#define PRINT_WARNING(fmt, ...) fprintf(stderr, "\033[0;35mWARNING:\033[0m " fmt "\n", ##__VA_ARGS__)
-#define PRINT_INFO(cond, fmt, ...) if(cond) printf("\033[0;32mINFO:\033[0m " fmt "\n", ##__VA_ARGS__);
-#define PRINT(fmt, ...) printf(fmt "\n", ##__VA_ARGS__)
-
-#endif