Moved directory creating functions to common.h

Removed duplicate function
This commit is contained in:
James Booth
2013-02-02 22:06:19 +00:00
parent 9d34c41227
commit d86a774953
3 changed files with 21 additions and 32 deletions

View File

@@ -67,6 +67,7 @@ typedef enum {
gchar* p_utf8_substring(const gchar *str, glong start_pos, glong end_pos);
void p_slist_free_full(GSList *items, GDestroyNotify free_func);
void create_dir(char *name);
void mkdir_recursive(const char *dir);
char * str_replace(const char *string, const char *substr,
const char *replacement);
int str_contains(char str[], int size, char ch);