mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-23 22:29:53 +00:00
14 lines
359 B
C
14 lines
359 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
#include "common/util/FileUtil.h"
|
||
|
|
||
|
#include "protocol/common_types.h"
|
||
|
|
||
|
namespace lsp_util {
|
||
|
std::string url_encode(const std::string& value);
|
||
|
std::string url_decode(const std::string& input);
|
||
|
LSPSpec::DocumentUri uri_from_path(fs::path path);
|
||
|
std::string uri_to_path(const LSPSpec::DocumentUri& uri);
|
||
|
}; // namespace lsp_util
|