Sprout/sprout/cwchar/wmemchr.hpp

59 lines
1.2 KiB
C++
Raw Normal View History

#ifndef SPROUT_CWCHAR_WMEMCHR_HPP
#define SPROUT_CWCHAR_WMEMCHR_HPP
#include <cstddef>
#include <sprout/config.hpp>
2012-12-22 01:02:49 +09:00
#include <sprout/iterator/ptr_index_iterator.hpp>
2013-01-12 04:08:44 +09:00
#include <sprout/algorithm/find.hpp>
namespace sprout {
namespace detail {
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR wchar_t const*
2012-12-22 01:02:49 +09: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-22 01:02:49 +09:00
//
// wmemchr
//
2013-01-13 17:41:45 +09:00
// recursion depth:
// O(log N)
//
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR wchar_t const*
wmemchr(wchar_t const* s, wchar_t c, size_t n) {
2012-12-22 01:02:49 +09:00
return sprout::detail::wmemchr_impl(
2013-02-26 17:03:30 +09:00
sprout::ptr_unindex(
2013-01-12 04:08:44 +09:00
sprout::find(
2013-02-26 17:03:30 +09:00
sprout::ptr_index(s), sprout::ptr_index(s, n),
2012-12-22 01:02:49 +09:00
c
)
),
s + n
);
}
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR wchar_t*
wmemchr(wchar_t* s, wchar_t c, size_t n) {
2012-12-22 01:02:49 +09:00
return sprout::detail::wmemchr_impl(
2013-02-26 17:03:30 +09:00
sprout::ptr_unindex(
2013-01-12 04:08:44 +09:00
sprout::find(
2013-02-26 17:03:30 +09:00
sprout::ptr_index(s), sprout::ptr_index(s, n),
2012-12-22 01:02:49 +09:00
c
)
),
s + n
);
}
} // namespace sprout
#endif // #ifndef SPROUT_CWCHAR_WMEMCHR_HPP