#pragma once #include namespace cstring{ constexpr size_t strlen( const char* s ) noexcept { return *s ? 1 + strlen(s + 1) : 0; } }