| 23 | }; |
| 24 | |
| 25 | struct TKnownSize { |
| 26 | size_t MySize; |
| 27 | explicit TKnownSize(size_t sz) |
| 28 | : MySize(sz) |
| 29 | { |
| 30 | } |
| 31 | bool Has(size_t sz) const { |
| 32 | return sz <= MySize; |
| 33 | } |
| 34 | }; |
| 35 | |
| 36 | template <typename TChar1, typename TChar2> |
| 37 | int Compare1Case2(const TChar1* s1, const TChar2* s2, size_t n) { |
no outgoing calls
no test coverage detected