aboutsummaryrefslogtreecommitdiffstats
path: root/src/filepath.h
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2015-05-06 00:52:27 +0200
committerTharre <tharre3@gmail.com>2015-05-24 22:15:09 +0200
commit4678d9630e9f95db9d06d3423c539bcb0bcc722c (patch)
tree92e1bb6d73eddc027436276454560fb709ad3c1f /src/filepath.h
parent3d7bf2600524bf988362859ddd92556baf4e7e2f (diff)
downloadredo-4678d9630e9f95db9d06d3423c539bcb0bcc722c.tar.gz
redo-4678d9630e9f95db9d06d3423c539bcb0bcc722c.tar.xz
redo-4678d9630e9f95db9d06d3423c539bcb0bcc722c.zip
Use full path instead of one concatenated filename
Creation of the redo store (.redo/) is now silent, that should probably be reimplemented in a better way at a later time.
Diffstat (limited to 'src/filepath.h')
-rw-r--r--src/filepath.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/filepath.h b/src/filepath.h
index 68a4ecf..2735e45 100644
--- a/src/filepath.h
+++ b/src/filepath.h
@@ -15,10 +15,9 @@ extern bool is_absolute(const char* path);
extern char *remove_ext(const char *str);
extern char *take_extension(const char *target);
extern char *relpath(char *path, char *start);
-extern char *transform_path(const char *target);
extern char *xbasename(const char *path);
extern bool fexists(const char *target);
extern off_t fsize(const char *fn);
-extern bool mkdirp(const char *dir);
+extern void mkpath(char *path, mode_t mode);
#endif