| 297 | /// Verify the first character of an option |
| 298 | template <typename T> |
| 299 | bool valid_first_char(T c) { |
| 300 | return std::isalnum(c, std::locale()) || c == '_' || c == '?' || c == '@'; |
| 301 | } |
| 302 | |
| 303 | /// Verify following characters of an option |
| 304 | template <typename T> |
no outgoing calls
no test coverage detected