| 25 | |
| 26 | [[nodiscard]] std::string StrMakeValid(std::string_view str, StringValidationSettings settings = StringValidationSetting::ReplaceWithQuestionMark); |
| 27 | [[nodiscard]] inline std::string StrMakeValid(std::string &&str, StringValidationSettings settings = StringValidationSetting::ReplaceWithQuestionMark) |
| 28 | { |
| 29 | StrMakeValidInPlace(str, settings); |
| 30 | return std::move(str); |
| 31 | } |
| 32 | |
| 33 | bool strtolower(std::string &str, std::string::size_type offs = 0); |
| 34 |
nothing calls this directly
no test coverage detected