8 lines
171 B
C++
8 lines
171 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <filesystem>
|
|
|
|
namespace dependencies {
|
|
auto walk(const std::filesystem::path& path, const std::string& prefix = "") -> bool;
|
|
} |