about summary refs log tree commit diff stats
path: root/src/common.h
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-03-14 16:02:09 +0100
committerGitHub <noreply@github.com>2022-03-14 16:02:09 +0100
commit4e95641014c3c81393390c38fcda2a7de0f3ba35 (patch)
treea033f3cfae5af5516a5da0b5e679626e762263e7 /src/common.h
parent9eee52d14caba9343c568390674d5cecc1a4d863 (diff)
parent8c55294352fd8f15a2e2f7ca4e8972d85b7f4b32 (diff)
downloadprofani-tty-4e95641014c3c81393390c38fcda2a7de0f3ba35.tar.gz
Merge pull request #1648 from profanity-im/refactor-editor
Refactor editor & some other parts
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common.h b/src/common.h
index bd33bf90..b97ef401 100644
--- a/src/common.h
+++ b/src/common.h
@@ -80,8 +80,7 @@ typedef enum {
     RESOURCE_XA
 } resource_presence_t;
 
-gboolean create_dir(char* name);
-gboolean mkdir_recursive(const char* dir);
+gboolean create_dir(const char* name);
 gboolean copy_file(const char* const src, const char* const target, const gboolean overwrite_existing);
 char* str_replace(const char* string, const char* substr, const char* replacement);
 gboolean strtoi_range(char* str, int* saveptr, int min, int max, char** err_msg);