Function
LowerString
Source from the content-addressed store, hash-verified
| 284 | } |
| 285 | |
| 286 | inline std::string LowerString(const StringPiece& s) |
| 287 | { |
| 288 | std::string res = s.as_string(); |
| 289 | StringToLower(&res); |
| 290 | return res; |
| 291 | } |
| 292 | |
| 293 | } // namespace toft |
| 294 | |