4#ifndef TETL_CWCHAR_WCSPBRK_HPP
5#define TETL_CWCHAR_WCSPBRK_HPP
7#include <etl/_cstddef/size_t.hpp>
8#include <etl/_strings/cstr.hpp>
16[[
nodiscard]]
constexpr auto wcspbrk(
wchar_t* dest,
wchar_t* breakset)
noexcept ->
wchar_t*
18 return etl::detail::strpbrk_impl<
wchar_t,
etl::size_t>(dest, breakset);
25[[
nodiscard]]
constexpr auto wcspbrk(
wchar_t const* dest,
wchar_t const* breakset)
noexcept ->
wchar_t const*
27 return etl::detail::strpbrk_impl<
wchar_t const,
etl::size_t>(dest, breakset);
Definition adjacent_find.hpp:9
constexpr auto wcspbrk(wchar_t *dest, wchar_t *breakset) noexcept -> wchar_t *
Finds the first character in wide string pointed to by dest, that is also in wide string pointed to b...
Definition wcspbrk.hpp:16
constexpr auto wcspbrk(wchar_t const *dest, wchar_t const *breakset) noexcept -> wchar_t const *
Finds the first character in wide string pointed to by dest, that is also in wide string pointed to b...
Definition wcspbrk.hpp:25