Browse Source

fs_find_mount_point.cpp

inodecalc
Antonio SJ Musumeci 3 weeks ago
parent
commit
12f34b3fbd
  1. 5
      src/fs_find_mount_point.cpp

5
src/fs_find_mount_point.cpp

@ -5,7 +5,10 @@
int
fs::find_mount_point(const ghc::filesystem::path &path_)
{
int rv;
struct stat initial_st;
rv = fs::lstat(path_,&initial_st);
return 0;
}
Loading…
Cancel
Save