mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 16:15:07 +00:00
9 lines
299 B
C++
9 lines
299 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); |