mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
11 lines
244 B
C++
11 lines
244 B
C++
#pragma once
|
|
|
|
#include <unordered_map>
|
|
|
|
std::unordered_map<std::string, std::string> ParseOptions(
|
|
int argc,
|
|
char** argv);
|
|
|
|
bool HasOption(
|
|
const std::unordered_map<std::string, std::string>& options,
|
|
const std::string& option); |