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