Creating a common word_count functions for strings.

This commit is contained in:
Patrick Shriwise 2018-10-10 16:09:01 -05:00
parent 2bffc33452
commit fea2c3cc04
3 changed files with 14 additions and 18 deletions

View file

@ -14,5 +14,7 @@ char* strtrim(char* c_str);
void to_lower(std::string& str);
int word_count(std::string const& str);
} // namespace openmc
#endif // STRING_FUNCTIONS_H