lolautoaccept/include/files.h
2022-04-23 22:35:44 +02:00

12 lines
209 B
C++

#pragma once
// stuff required for file handling
#include <string>
// create a directory and its parents
bool mkdirs(const std::string& path);
// get $HOME or a useful default value
std::string getHome();