tetl
0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
wcspbrk.hpp
Go to the documentation of this file.
1
// SPDX-License-Identifier: BSL-1.0
2
3
#ifndef TETL_CWCHAR_WCSPBRK_HPP
4
#define TETL_CWCHAR_WCSPBRK_HPP
5
6
#include <
etl/_cstddef/size_t.hpp
>
7
#include <
etl/_strings/cstr.hpp
>
8
9
namespace
etl
{
10
15
[[nodiscard]]
constexpr
auto
wcspbrk
(
wchar_t
* dest,
wchar_t
* breakset)
noexcept
->
wchar_t
*
16
{
17
return
etl::detail::strpbrk_impl<wchar_t, etl::size_t>(dest, breakset);
18
}
19
24
[[nodiscard]]
constexpr
auto
wcspbrk
(
wchar_t
const
* dest,
wchar_t
const
* breakset)
noexcept
->
wchar_t
const
*
25
{
26
return
etl::detail::strpbrk_impl<wchar_t const, etl::size_t>(dest, breakset);
27
}
28
29
}
// namespace etl
30
#endif
// TETL_CWCHAR_WCSPBRK_HPP
cstr.hpp
etl
Definition
adjacent_find.hpp:8
etl::wcspbrk
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:15
size_t.hpp
include
etl
_cwchar
wcspbrk.hpp
Generated on Sat Mar 8 2025 16:19:59 for tetl by
1.14.0