aboutsummaryrefslogtreecommitdiffstats
path: root/src/ckutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ckutil.c')
-rw-r--r--src/ckutil.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/ckutil.c b/src/ckutil.c
index 06d12da..79d7fd3 100644
--- a/src/ckutil.c
+++ b/src/ckutil.c
@@ -34,20 +34,6 @@ int util_is_dir(const char *path) {
return 1;
}
-void util_replace_slash_with_uscore(char *s) {
- if (!s) {
- return;
- }
- int i = 0;
- while (*s != '\0') {
- if (*s == '/' && i != 0) {
- *s = '_';
- }
- s++;
- i++;
- }
-}
-
int util_file_exists(const char* path, char *absPath) {
if (!path || !absPath) {
return 0;