Sprout/sprout/cstring/strcoll.hpp

18 lines
416 B
C++
Raw Normal View History

2012-04-01 13:15:09 +00:00
#ifndef SPROUT_CSTRING_STRCOLL_HPP
#define SPROUT_CSTRING_STRCOLL_HPP
#include <sprout/config.hpp>
#include <sprout/cstring/strcmp.hpp>
namespace sprout {
// Copyright (C) 2011 RiSK (sscrisk)
// 7.21.4.3 strcoll <20>֐<EFBFBD>
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);
}
} // namespace sprout
#endif // #ifndef SPROUT_CSTRING_STRCOLL_HPP