mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
18 lines
275 B
C++
18 lines
275 B
C++
#ifndef WF_TEST_FILE_UTILS_HPP
|
|
#define WF_TEST_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
|