X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Futils.h;h=b166fede96a8e888f4ea070cce87ede620dfe466;hp=db6a32c74fcc684369f9345486bcabde28a02939;hb=59db379f143f9accda21b831e0243d02f27c1c70;hpb=3004842aa3281f26137c7332089068da7edb34af diff --git a/source/utils.h b/source/utils.h index db6a32c..b166fed 100644 --- a/source/utils.h +++ b/source/utils.h @@ -74,6 +74,9 @@ Path getcwd(); /// Returns the user's home directory Path get_home_dir(); +/// Changes the current working directory +void chdir(const Path &); + inline bool is_windows_drive(const std::string &p) { return (p.size()==2 && ((p[0]>='A' && p[0]<='Z') || (p[0]>='a' && p[0]<='z')) && p[1]==':'); }