Clio  develop
The XRP Ledger API server.
Loading...
Searching...
No Matches
PrettyPath.hpp
1#pragma once
2
3#include <cstddef>
4#include <string_view>
5
6namespace util {
7
17[[nodiscard]] std::string_view
18prettyPath(std::string_view filePath, size_t maxDepth = 3);
19
20} // namespace util
This namespace contains various utilities.
Definition AccountUtils.hpp:11
std::string_view prettyPath(std::string_view filePath, size_t maxDepth)
Get a pretty version of the path from the source location.
Definition PrettyPath.cpp:11