ccls/src/options.h

9 lines
299 B
C
Raw Normal View History

2017-04-09 02:24:32 +00:00
#pragma once
#include <unordered_map>
2017-09-22 01:14:57 +00:00
std::unordered_map<std::string, std::string> ParseOptions(int argc,
char** argv);
2017-04-09 02:24:32 +00:00
2017-09-22 01:14:57 +00:00
bool HasOption(const std::unordered_map<std::string, std::string>& options,
const std::string& option);