2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-04-15 01:31:49 +00:00
|
|
|
#ifndef SPROUT_CWCHAR_WMEMCHR_HPP
|
|
|
|
#define SPROUT_CWCHAR_WMEMCHR_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <sprout/config.hpp>
|
2012-12-21 16:02:49 +00:00
|
|
|
#include <sprout/iterator/ptr_index_iterator.hpp>
|
2013-01-11 19:08:44 +00:00
|
|
|
#include <sprout/algorithm/find.hpp>
|
2012-04-15 01:31:49 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace detail {
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR wchar_t const*
|
2012-12-21 16:02:49 +00:00
|
|
|
wmemchr_impl(wchar_t const* found, wchar_t const* last) {
|
|
|
|
return found == last ? nullptr
|
|
|
|
: found
|
|
|
|
;
|
|
|
|
}
|
|
|
|
inline SPROUT_CONSTEXPR wchar_t*
|
|
|
|
wmemchr_impl(wchar_t* found, wchar_t* last) {
|
|
|
|
return found == last ? nullptr
|
|
|
|
: found
|
|
|
|
;
|
2012-04-15 01:31:49 +00:00
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
|
2012-12-21 16:02:49 +00:00
|
|
|
//
|
|
|
|
// wmemchr
|
|
|
|
//
|
2013-01-13 08:41:45 +00:00
|
|
|
// recursion depth:
|
|
|
|
// O(log N)
|
|
|
|
//
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR wchar_t const*
|
|
|
|
wmemchr(wchar_t const* s, wchar_t c, size_t n) {
|
2012-12-21 16:02:49 +00:00
|
|
|
return sprout::detail::wmemchr_impl(
|
2013-02-26 08:03:30 +00:00
|
|
|
sprout::ptr_unindex(
|
2013-01-11 19:08:44 +00:00
|
|
|
sprout::find(
|
2013-02-26 08:03:30 +00:00
|
|
|
sprout::ptr_index(s), sprout::ptr_index(s, n),
|
2012-12-21 16:02:49 +00:00
|
|
|
c
|
|
|
|
)
|
|
|
|
),
|
|
|
|
s + n
|
|
|
|
);
|
2012-04-15 01:31:49 +00:00
|
|
|
}
|
|
|
|
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR wchar_t*
|
|
|
|
wmemchr(wchar_t* s, wchar_t c, size_t n) {
|
2012-12-21 16:02:49 +00:00
|
|
|
return sprout::detail::wmemchr_impl(
|
2013-02-26 08:03:30 +00:00
|
|
|
sprout::ptr_unindex(
|
2013-01-11 19:08:44 +00:00
|
|
|
sprout::find(
|
2013-02-26 08:03:30 +00:00
|
|
|
sprout::ptr_index(s), sprout::ptr_index(s, n),
|
2012-12-21 16:02:49 +00:00
|
|
|
c
|
|
|
|
)
|
|
|
|
),
|
|
|
|
s + n
|
|
|
|
);
|
2012-04-15 01:31:49 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CWCHAR_WMEMCHR_HPP
|