diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-10-28 13:23:56 +0200 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-10-28 13:23:56 +0200 |
commit | 56fdf6de6ee00f1eb4303065c26811310a7c0728 (patch) | |
tree | ccc738f82bd91b979beb5c0b8b836f7956009d08 /src/ckutil.c | |
parent | 8ad6cfa33d6a37605599be5673c4acecc7eca5af (diff) | |
download | ck-56fdf6de6ee00f1eb4303065c26811310a7c0728.tar.gz ck-56fdf6de6ee00f1eb4303065c26811310a7c0728.tar.bz2 ck-56fdf6de6ee00f1eb4303065c26811310a7c0728.zip |
Add manpage to readme
Diffstat (limited to 'src/ckutil.c')
-rw-r--r-- | src/ckutil.c | 14 |
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; |