| 104 | } |
| 105 | |
| 106 | inline const char* end(const char* str) noexcept |
| 107 | { |
| 108 | if (str == nullptr) |
| 109 | return nullptr; |
| 110 | |
| 111 | return str + StringLength(str); |
| 112 | } |
| 113 | |
| 114 | inline const wchar_t* begin(const wchar_t* str) noexcept |
| 115 | { |
no test coverage detected