diff options
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#include <string> +#include <vector> + +const char *get_home_directory(void); + +int copy_file(const char *src, const char *dest); + +int create_dir(const char *dir); + +void tokenize(const std::string& str, std::vector<std::string>& tokens, + const std::string& delimiters); + +bool find_executable(const char *name, std::string& retpath); |