Sprout/sprout/cwchar/wcslen.hpp

33 lines
962 B
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2015-01-10 10:13:57 +00:00
Copyright (c) 2011-2015 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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)
=============================================================================*/
#ifndef SPROUT_CWCHAR_WCSLEN_HPP
#define SPROUT_CWCHAR_WCSLEN_HPP
#include <sprout/config.hpp>
#include <sprout/workaround/std/cstddef.hpp>
2013-01-12 16:16:48 +00:00
#include <sprout/cstring/strlen.hpp>
namespace sprout {
2012-12-21 16:02:49 +00:00
//
// wcslen
//
2013-01-12 16:16:48 +00:00
// recursion depth:
// O(log N)
//
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR std::size_t
wcslen(wchar_t const* s) {
2013-01-12 16:16:48 +00:00
return sprout::strlen(s);
}
2012-12-21 16:02:49 +00:00
inline SPROUT_CONSTEXPR std::size_t
wcslen(wchar_t const* s, std::size_t n) {
2013-01-12 16:16:48 +00:00
return sprout::strlen(s, n);
2012-12-21 16:02:49 +00:00
}
} // namespace sprout
#endif // #ifndef SPROUT_CWCHAR_WCSLEN_HPP