summaryrefslogtreecommitdiff
path: root/parser/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser/parse.h')
-rw-r--r--parser/parse.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/parser/parse.h b/parser/parse.h
index 886b867d..99780113 100644
--- a/parser/parse.h
+++ b/parser/parse.h
@@ -79,8 +79,10 @@ GSList* parse_xdg_data_dir_paths();
/*! Expands the ~ character to the home directory throughout the given
string */
gchar *parse_expand_tilde(const gchar *f);
+/*! Makes a directory */
+gboolean parse_mkdir(const gchar *path, gint mode);
/*! Makes a directory and all its parents */
-void parse_mkdir_path(const gchar *path, gint mode);
+gboolean parse_mkdir_path(const gchar *path, gint mode);
G_END_DECLS