summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/LspCpp/network/uri/detail/uri_normalize.hpp
blob: 3c2e03b11d6ab86385a6c843bb6c06ac1831d0a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2013-2016 Glyn Matthews.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

#ifndef NETWORK_DETAIL_NORMALIZE_INC
#define NETWORK_DETAIL_NORMALIZE_INC

#include <network/uri/uri.hpp>
#include <network/string_view.hpp>

namespace network {
namespace detail {
std::string normalize_path_segments(string_view path);

std::string normalize_path(string_view path, uri_comparison_level level);
}  // namespace detail
}  // namespace network

#endif  // NETWORK_DETAIL_NORMALIZE_INC