Sprout/sprout/cstring/memcmp.hpp

40 lines
1.4 KiB
C++
Raw Normal View History

2012-04-01 13:15:09 +00:00
#ifndef SPROUT_CSTRING_MEMCMP_HPP
#define SPROUT_CSTRING_MEMCMP_HPP
#include <cstddef>
2013-06-26 15:38:14 +00:00
#include <type_traits>
2012-04-01 13:15:09 +00:00
#include <sprout/config.hpp>
2013-06-26 15:38:14 +00:00
#include <sprout/type_traits/enabler_if.hpp>
2012-12-21 16:02:49 +00:00
#include <sprout/iterator/ptr_index_iterator.hpp>
#include <sprout/algorithm/tristate_lexicographical_compare.hpp>
2012-04-01 13:15:09 +00:00
namespace sprout {
2013-03-22 05:24:19 +00:00
// 7.21.4.1 memcmp <20>֐<EFBFBD>
2013-01-13 08:41:45 +00:00
//
// recursion depth:
// O(log(N1+N2))
//
2013-06-26 15:36:17 +00:00
#if 0
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR int
memcmp(void const* s1, void const* s2, std::size_t n) {
2012-12-21 16:02:49 +00:00
return sprout::tristate_lexicographical_compare(
2013-02-26 08:03:30 +00:00
sprout::ptr_index(static_cast<unsigned char const*>(s1)), sprout::ptr_index(static_cast<unsigned char const*>(s1), n),
sprout::ptr_index(static_cast<unsigned char const*>(s2)), sprout::ptr_index(static_cast<unsigned char const*>(s2), n)
2012-04-01 13:15:09 +00:00
);
}
2013-06-26 15:36:17 +00:00
#endif
template<
typename T,
typename sprout::enabler_if<std::is_convertible<T, void const*>::value>::type = sprout::enabler
>
inline SPROUT_CONSTEXPR int
memcmp(T s1, T s2, std::size_t n) {
return sprout::tristate_lexicographical_compare(
sprout::ptr_index(static_cast<unsigned char const*>(s1)), sprout::ptr_index(static_cast<unsigned char const*>(s1), n),
sprout::ptr_index(static_cast<unsigned char const*>(s2)), sprout::ptr_index(static_cast<unsigned char const*>(s2), n)
);
}
2012-04-01 13:15:09 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_CSTRING_MEMCMP_HPP