4#ifndef TETL_CWCHAR_WCSSTR_HPP
5#define TETL_CWCHAR_WCSSTR_HPP
7#include <etl/_strings/cstr.hpp>
16[[
nodiscard]]
constexpr auto wcsstr(
wchar_t* haystack,
wchar_t* needle)
noexcept ->
wchar_t*
18 return etl::detail::strstr_impl<
wchar_t>(haystack, needle);
26[[
nodiscard]]
constexpr auto wcsstr(
wchar_t const* haystack,
wchar_t const* needle)
noexcept ->
wchar_t const*
28 return etl::detail::strstr_impl<
wchar_t const>(haystack, needle);
Definition adjacent_find.hpp:9
constexpr auto wcsstr(wchar_t *haystack, wchar_t *needle) noexcept -> wchar_t *
Finds the first occurrence of the wide string needle in the wide string pointed to by haystack....
Definition wcsstr.hpp:16
constexpr auto wcsstr(wchar_t const *haystack, wchar_t const *needle) noexcept -> wchar_t const *
Finds the first occurrence of the wide string needle in the wide string pointed to by haystack....
Definition wcsstr.hpp:26