blob: 29bc02284bbf9b5df31b8dac219bd08b46e87327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef FSUTILS_HH
#define FSUTILS_HH
#include <string>
namespace stuff {
bool isdir(const std::string& path);
bool mkdir_p(const std::string& path);
} // namespace stuff
#endif /* FSUTILS_HH */
|