4#ifndef TETL_CWCHAR_WCSRCHR_HPP
5#define TETL_CWCHAR_WCSRCHR_HPP
7#include <etl/_cstddef/size_t.hpp>
8#include <etl/_strings/cstr.hpp>
18 return etl::detail::strrchr<
wchar_t,
etl::size_t>(str, ch);
27 return etl::detail::strrchr<
wchar_t const,
etl::size_t>(str, ch);
Definition adjacent_find.hpp:9
constexpr auto wcsrchr(wchar_t const *str, int ch) -> wchar_t const *
Finds the last occurrence of the wide character ch in the wide string pointed to by str.
Definition wcsrchr.hpp:25
constexpr auto wcsrchr(wchar_t *str, int ch) -> wchar_t *
Finds the last occurrence of the wide character ch in the wide string pointed to by str.
Definition wcsrchr.hpp:16