blob: fccce467d5a87e50b78e180923be0181b3aeb50c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef HOST_MKDIRS_H
#define HOST_MKDIRS_H
#include <string>
std::string parent_dir(const std::string& path);
extern "C" int mkdirs(const char* path);
#endif // HOST_MKDIRS_H
|