aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorverdant <im@verdant.ee>2026-07-27 20:27:23 +0800
committerverdant <im@verdant.ee>2026-07-27 20:27:56 +0800
commit00469710b2bb964668ac83aa0ba8ff5fae508cbd (patch)
treefca79f9bd32af2c9c7a4648dddfc09ca55eb1e30
parent16ca576eefc6bb3fe85a6e6e58521b99d5b9fe47 (diff)
downloadsf-00469710b2bb964668ac83aa0ba8ff5fae508cbd.tar.gz
sf-00469710b2bb964668ac83aa0ba8ff5fae508cbd.zip
Remove unused files
-rw-r--r--utils.c9
-rw-r--r--utils.h6
2 files changed, 0 insertions, 15 deletions
diff --git a/utils.c b/utils.c
deleted file mode 100644
index 6a42a7c..0000000
--- a/utils.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include "utils.h"
-
-#include <stdlib.h>
-#include <string.h>
-
-int is_debug() {
- char* env = getenv("DEBUG");
- return env && (strcmp(env, "true") == 0 || strcmp(env, "1") == 0);
-}
diff --git a/utils.h b/utils.h
deleted file mode 100644
index b274877..0000000
--- a/utils.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#ifndef SF_UTILS_H
-#define SF_UTILS_H
-
-int is_debug();
-
-#endif /* SF_UTILS_H */