lolautoaccept/include/files.h

12 lines
209 B
C
Raw Normal View History

2022-04-23 22:35:44 +02:00
#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();