| 179 | } |
| 180 | |
| 181 | inline ECharset CharsetByName(TStringBuf name) { |
| 182 | if (!name) |
| 183 | return CODES_UNKNOWN; |
| 184 | |
| 185 | TData::const_iterator it = Data.find(name); |
| 186 | if (it == Data.end()) |
| 187 | return CODES_UNKNOWN; |
| 188 | |
| 189 | return it->second; |
| 190 | } |
| 191 | }; |
| 192 | |
| 193 | ECharset CharsetByName(TStringBuf name) { |
no test coverage detected