Sprout/sprout/cstring/strcoll.hpp

31 lines
702 B
C++
Raw Normal View History

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