Sprout/sprout/cstring/strcoll.hpp

38 lines
1.1 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_STRCOLL_HPP
#define SPROUT_CSTRING_STRCOLL_HPP
2013-01-13 01:16:48 +09:00
#include <type_traits>
2012-04-01 22:15:09 +09:00
#include <sprout/config.hpp>
2013-01-13 01:16:48 +09:00
#include <sprout/type_traits/is_char_type.hpp>
2012-04-01 22:15:09 +09:00
#include <sprout/cstring/strcmp.hpp>
namespace sprout {
2013-03-22 14:24:19 +09:00
// 7.21.4.3 strcoll <20>֐<EFBFBD>
2013-01-13 01:16:48 +09:00
//
// recursion depth:
// O(log(N1+N2))
//
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR int
strcoll(char const* s1, char const* s2) {
2012-04-01 22:15:09 +09:00
return sprout::strcmp(s1, s2);
}
2013-01-13 01:16:48 +09:00
template<typename Elem>
inline SPROUT_CONSTEXPR typename std::enable_if<
sprout::is_char_type<Elem>::value,
int
>::type
strcoll(Elem* s1, Elem* s2) {
return sprout::strcmp(s1, s2);
}
2012-04-01 22:15:09 +09:00
} // namespace sprout
#endif // #ifndef SPROUT_CSTRING_STRCOLL_HPP