#ifndef STRUTILS_H_ #define STRUTILS_H_ #include bool isAllCaps(const std::string& s); std::string strToIdentifier(const std::string& s); bool beginsWithStr(const std::string& s); bool beginsWithOpt(const std::string& s); bool endsWithList(const std::string& s); bool isSpecialRule(const std::string& s); #endif