15template <
typename Char1Type,
typename Char2Type>
16constexpr bool stringComp (Char1Type str1, Char2Type str2,
const uint32_t size)
19 for (uint32_t i = 0; i < size; ++i)
21 if (str1[i] != str2[i])
constexpr bool stringComp(Char1Type str1, Char2Type str2, const uint32_t size)
Definition: ame_String.hpp:16