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-01 13:15:09 +00:00
|
|
|
|
#ifndef SPROUT_CSTRING_MEMCMP_HPP
|
|
|
|
|
#define SPROUT_CSTRING_MEMCMP_HPP
|
|
|
|
|
|
2013-06-26 15:38:14 +00:00
|
|
|
|
#include <type_traits>
|
2012-04-01 13:15:09 +00:00
|
|
|
|
#include <sprout/config.hpp>
|
2014-04-30 07:30:26 +00:00
|
|
|
|
#include <sprout/workaround/std/cstddef.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 {
|
2014-04-22 16:27:03 +00:00
|
|
|
|
namespace detail {
|
|
|
|
|
template<typename PtrIterator>
|
|
|
|
|
inline SPROUT_CONSTEXPR int
|
|
|
|
|
memcmp(PtrIterator s1, PtrIterator s2, std::size_t n) {
|
|
|
|
|
return sprout::tristate_lexicographical_compare(
|
|
|
|
|
sprout::ptr_index(s1), sprout::ptr_index(s1, n),
|
|
|
|
|
sprout::ptr_index(s2), sprout::ptr_index(s2, n)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
} // namespace detail
|
|
|
|
|
|
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) {
|
2014-04-22 16:27:03 +00:00
|
|
|
|
return sprout::detail::memcmp(static_cast<unsigned char const*>(s1), 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) {
|
2014-04-22 16:27:03 +00:00
|
|
|
|
return sprout::detail::memcmp(static_cast<unsigned char const*>(s1), static_cast<unsigned char const*>(s2), n);
|
2013-06-26 15:36:17 +00:00
|
|
|
|
}
|
2012-04-01 13:15:09 +00:00
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CSTRING_MEMCMP_HPP
|