Sprout/sprout/cwchar/wmemchr.hpp

66 lines
1.6 KiB
C++
Raw Normal View History

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)
=============================================================================*/
#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>
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
;
}
} // 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-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
);
}
} // namespace sprout
#endif // #ifndef SPROUT_CWCHAR_WMEMCHR_HPP