4#ifndef TETL_CWCHAR_WCSCHR_HPP
5#define TETL_CWCHAR_WCSCHR_HPP
7#include <etl/_strings/cstr.hpp>
16 return etl::detail::strchr<
wchar_t>(str, ch);
25 return etl::detail::strchr<
wchar_t const>(str, ch);
Definition adjacent_find.hpp:9
constexpr auto wcschr(wchar_t *str, int ch) -> wchar_t *
Finds the first occurrence of the wide character ch in the wide string pointed to by str.
Definition wcschr.hpp:14
constexpr auto wcschr(wchar_t const *str, int ch) -> wchar_t const *
Finds the first occurrence of the wide character ch in the wide string pointed to by str.
Definition wcschr.hpp:23