summaryrefslogtreecommitdiff
path: root/parser/parse.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-10-25 19:13:09 +0000
committerDana Jansens <danakj@orodu.net>2003-10-25 19:13:09 +0000
commit5cadc1bff5a26497df28f38e7e9b74d81dfa1084 (patch)
treea41dfc5ffc19ac76b3ceaddcfe09cb37074508ec /parser/parse.h
parent138d98fc3f743f29bdf78efcdc25b515357d6817 (diff)
much improved functions for maknig directories, props to Logan
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