| 73 | } |
| 74 | |
| 75 | std::string |
| 76 | ToLower(std::string const& s) |
| 77 | { |
| 78 | std::string sNew = s; |
| 79 | std::transform(sNew.begin(), sNew.end(), sNew.begin(), [](char c) { return ::tolower(c); }); |
| 80 | return sNew; |
| 81 | } |
| 82 | } // namespace props_check |
| 83 | } // namespace cppmicroservices |