Sprout/sprout/cstring/memchr.hpp

58 lines
1.5 KiB
C++
Raw Normal View History

2012-04-01 13:15:09 +00:00
#ifndef SPROUT_CSTRING_MEMCHR_HPP
#define SPROUT_CSTRING_MEMCHR_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-01 13:15:09 +00:00
namespace sprout {
namespace detail {
2012-12-21 16:02:49 +00:00
inline SPROUT_CONSTEXPR unsigned char const*
memchr_impl(unsigned char const* found, unsigned char const* last) {
return found == last ? nullptr
: found
;
}
inline SPROUT_CONSTEXPR unsigned char*
memchr_impl(unsigned char* found, unsigned char* last) {
return found == last ? nullptr
: found
;
2012-04-01 13:15:09 +00:00
}
} // namespace detail
// 7.21.5.1 memchr <20>֐<EFBFBD>
2013-01-13 08:41:45 +00:00
//
// recursion depth:
// O(log N)
//
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR void const*
2012-12-21 16:02:49 +00:00
memchr(void const* s, int c, std::size_t n) {
return sprout::detail::memchr_impl(
sprout::as_iterator_base(
2013-01-11 19:08:44 +00:00
sprout::find(
2012-12-21 16:02:49 +00:00
sprout::as_iterator(static_cast<unsigned char const*>(s)), sprout::as_iterator(static_cast<unsigned char const*>(s), n),
static_cast<unsigned char>(c)
)
),
static_cast<unsigned char const*>(s) + n
);
2012-04-01 13:15:09 +00:00
}
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR void*
2012-12-21 16:02:49 +00:00
memchr(void* s, int c, std::size_t n) {
return sprout::detail::memchr_impl(
sprout::as_iterator_base(
2013-01-11 19:08:44 +00:00
sprout::find(
2012-12-21 16:02:49 +00:00
sprout::as_iterator(static_cast<unsigned char*>(s)), sprout::as_iterator(static_cast<unsigned char*>(s), n),
static_cast<unsigned char>(c)
)
),
static_cast<unsigned char*>(s) + n
2012-04-01 13:15:09 +00:00
);
}
} // namespace sprout
#endif // #ifndef SPROUT_CSTRING_MEMCHR_HPP