diff options
author | Daniel Carl <danielcarl@gmx.de> | 2017-04-20 22:45:31 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2017-04-20 22:45:31 +0200 |
commit | 597a0acfd9e35f6516a6c5069fdf651416e9f11c (patch) | |
tree | 76454c378835df19e20446b2f9959df0f299599a /src/util.h | |
parent | 5c7059196850118f4e9435797cedd155661748af (diff) |
Added :save command.
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -30,7 +30,9 @@ enum { }; typedef void *(*Util_Content_Func)(const char*, const char*); +char *util_build_path(Client *c, const char *path, const char *dir); void util_cleanup(void); +void util_create_dir_if_not_exists(const char *dirpath); char *util_expand(Client *c, const char *src, int expflags); gboolean util_file_append(const char *file, const char *format, ...); gboolean util_file_prepend(const char *file, const char *format, ...); |