Horizon
check_util.hpp
1 #pragma once
2 #include <string>
3 
4 namespace horizon {
5 bool needs_trim(const std::string &s);
6 bool check_tag(const std::string &s);
7 bool check_prefix(const std::string &s);
8 enum class RulesCheckErrorLevel;
9 void accumulate_level(RulesCheckErrorLevel &r, RulesCheckErrorLevel l);
10 } // namespace horizon