mirror of
https://github.com/MaskRay/ccls.git
synced 2024-12-01 03:47:07 +00:00
17 lines
400 B
C++
17 lines
400 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <vector>
|
|
|
|
std::string NormalizePath(const std::string& path);
|
|
|
|
// Free any unused memory and return it to the system.
|
|
void FreeUnusedMemory();
|
|
|
|
// Stop self and wait for SIGCONT.
|
|
void TraceMe();
|
|
|
|
std::string GetExternalCommandOutput(const std::vector<std::string>& command,
|
|
std::string_view input);
|