4#ifndef TETL_CWCHAR_WMEMCHR_HPP
5#define TETL_CWCHAR_WMEMCHR_HPP
7#include <etl/_cstddef/size_t.hpp>
8#include <etl/_strings/cstr.hpp>
20 return etl::detail::memchr<
wchar_t>(ptr, ch, count);
29[[
nodiscard]]
constexpr auto wmemchr(
wchar_t const* ptr,
wchar_t ch,
etl::size_t count)
noexcept ->
wchar_t const*
31 return etl::detail::memchr<
wchar_t const>(ptr, ch, count);
Definition adjacent_find.hpp:9
constexpr auto wmemchr(wchar_t *ptr, wchar_t ch, etl::size_t count) noexcept -> wchar_t *
Locates the first occurrence of wide character ch in the initial count wide characters of the wide ch...
Definition wmemchr.hpp:18
constexpr auto wmemchr(wchar_t const *ptr, wchar_t ch, etl::size_t count) noexcept -> wchar_t const *
Locates the first occurrence of wide character ch in the initial count wide characters of the wide ch...
Definition wmemchr.hpp:29