Switch to unified view

a/src/utils/pathut.h b/src/utils/pathut.h
...
...
69
/// routine, it does the right thing only in the recoll context
69
/// routine, it does the right thing only in the recoll context
70
extern std::string url_gpath(const std::string& url);
70
extern std::string url_gpath(const std::string& url);
71
71
72
/// Stat parameter and check if it's a directory
72
/// Stat parameter and check if it's a directory
73
extern bool path_isdir(const std::string& path);
73
extern bool path_isdir(const std::string& path);
74
75
/// Retrieve file size
76
extern long long path_filesize(const std::string& path);
74
77
75
/// Dump directory
78
/// Dump directory
76
extern bool readdir(const std::string& dir, std::string& reason, 
79
extern bool readdir(const std::string& dir, std::string& reason, 
77
            std::set<std::string>& entries);
80
            std::set<std::string>& entries);
78
81