mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
463 B
24 lines
463 B
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
|
|
namespace mergerfs
|
|
{
|
|
namespace api
|
|
{
|
|
int
|
|
basepath(const std::string &path,
|
|
std::string &basepath);
|
|
int
|
|
relpath(const std::string &path,
|
|
std::string &relpath);
|
|
int
|
|
fullpath(const std::string &path,
|
|
std::string &fullpath);
|
|
int
|
|
allpaths(const std::string &path,
|
|
std::vector<std::string> &paths);
|
|
}
|
|
}
|