From 56fdf6de6ee00f1eb4303065c26811310a7c0728 Mon Sep 17 00:00:00 2001 From: gramanas Date: Sun, 28 Oct 2018 13:23:56 +0200 Subject: Add manpage to readme --- src/ckutil.c | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/ckutil.c') 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; -- cgit v1.2.3