1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/test/webfuse/test_util/file_utils.hpp
2020-06-28 20:09:09 +02:00

18 lines
285 B
C++

#ifndef WF_TEST_UTIL_FILE_UTILS_HPP
#define WF_TEST_UTIL_FILE_UTILS_HPP
#include <string>
namespace webfuse_test
{
bool is_dir(std::string const & path);
bool is_symlink(std::string const & path);
bool is_same_path(std::string const & path, std::string const & other);
}
#endif