| 24 | /** Returns length of a literal string. */ |
| 25 | template <size_t N> |
| 26 | constexpr size_t cmStrLen(char const (&)[N]) |
| 27 | { |
| 28 | return N - 1; |
| 29 | } |
| 30 | |
| 31 | /** Callable string comparison struct. */ |
| 32 | struct cmStrCmp |
no outgoing calls
searching dependent graphs…