| 108 | } // namespace NUrl |
| 109 | |
| 110 | size_t GetHttpPrefixSize(const char* url, bool ignorehttps) noexcept { |
| 111 | return GetHttpPrefixSizeImpl<char>(url, TUncheckedSize(), ignorehttps); |
| 112 | } |
| 113 | |
| 114 | size_t GetHttpPrefixSize(const wchar16* url, bool ignorehttps) noexcept { |
| 115 | return GetHttpPrefixSizeImpl<wchar16>(url, TUncheckedSize(), ignorehttps); |
no test coverage detected