Move mkdirp into libi3

This commit is contained in:
Deiz
2015-03-29 17:18:00 -04:00
parent b338e25317
commit e622c42ef0
4 changed files with 44 additions and 36 deletions

View File

@ -452,3 +452,9 @@ char *resolve_tilde(const char *path);
*
*/
char *get_config_path(const char *override_configpath, bool use_system_paths);
/**
* Emulates mkdir -p (creates any missing folders)
*
*/
bool mkdirp(const char *path);