Sprout/sprout/cstring/memcmp.hpp

47 lines
1.8 KiB
C++
Raw Normal View History

2013-08-08 18:54:33 +09:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
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 22:15:09 +09:00
#ifndef SPROUT_CSTRING_MEMCMP_HPP
#define SPROUT_CSTRING_MEMCMP_HPP
#include <cstddef>
2013-06-27 00:38:14 +09:00
#include <type_traits>
2012-04-01 22:15:09 +09:00
#include <sprout/config.hpp>
2013-06-27 00:38:14 +09:00
#include <sprout/type_traits/enabler_if.hpp>
2012-12-22 01:02:49 +09:00
#include <sprout/iterator/ptr_index_iterator.hpp>
#include <sprout/algorithm/tristate_lexicographical_compare.hpp>
2012-04-01 22:15:09 +09:00
namespace sprout {
2013-03-22 14:24:19 +09:00
// 7.21.4.1 memcmp <20>֐<EFBFBD>
2013-01-13 17:41:45 +09:00
//
// recursion depth:
// O(log(N1+N2))
//
2013-06-27 00:36:17 +09:00
#if 0
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR int
memcmp(void const* s1, void const* s2, std::size_t n) {
2012-12-22 01:02:49 +09:00
return sprout::tristate_lexicographical_compare(
2013-02-26 17:03:30 +09: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 22:15:09 +09:00
);
}
2013-06-27 00:36:17 +09: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 22:15:09 +09:00
} // namespace sprout
#endif // #ifndef SPROUT_CSTRING_MEMCMP_HPP