Sprout/sprout/cwchar/wcslen.hpp

26 lines
531 B
C++
Raw Normal View History

#ifndef SPROUT_CWCHAR_WCSLEN_HPP
#define SPROUT_CWCHAR_WCSLEN_HPP
#include <cstddef>
#include <sprout/config.hpp>
2013-01-13 01:16:48 +09:00
#include <sprout/cstring/strlen.hpp>
namespace sprout {
2012-12-22 01:02:49 +09:00
//
// wcslen
//
2013-01-13 01:16:48 +09:00
// recursion depth:
// O(log N)
//
2012-10-06 00:58:56 +09:00
inline SPROUT_CONSTEXPR std::size_t
wcslen(wchar_t const* s) {
2013-01-13 01:16:48 +09:00
return sprout::strlen(s);
}
2012-12-22 01:02:49 +09:00
inline SPROUT_CONSTEXPR std::size_t
wcslen(wchar_t const* s, std::size_t n) {
2013-01-13 01:16:48 +09:00
return sprout::strlen(s, n);
2012-12-22 01:02:49 +09:00
}
} // namespace sprout
#endif // #ifndef SPROUT_CWCHAR_WCSLEN_HPP