tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
wcslen.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_CWCHAR_WCSLEN_HPP
4#define TETL_CWCHAR_WCSLEN_HPP
5
8
9namespace etl {
12constexpr auto wcslen(wchar_t const* str) -> size_t { return etl::detail::strlen<wchar_t, size_t>(str); }
13} // namespace etl
14
15#endif // TETL_CWCHAR_WCSLEN_HPP
Definition adjacent_find.hpp:8
constexpr auto wcslen(wchar_t const *str) -> size_t
Returns the length of a wide string, that is the number of non-null wide characters that precede the ...
Definition wcslen.hpp:12