1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add <cstring> and <cwchar> compatible constexpr functions

This commit is contained in:
bolero-MURAKAMI 2014-04-23 01:27:03 +09:00
parent fe255a5e74
commit b04dea6002
26 changed files with 526 additions and 103 deletions

24
sprout/cwchar/wmemset.hpp Normal file
View file

@ -0,0 +1,24 @@
/*=============================================================================
Copyright (c) 2011-2014 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)
=============================================================================*/
#ifndef SPROUT_CWCHAR_WMEMSET_HPP
#define SPROUT_CWCHAR_WMEMSET_HPP
#include <sprout/config.hpp>
#include <sprout/cstring/memset.hpp>
namespace sprout {
// 7.24.4.6.2 The wmemset function
//
inline SPROUT_CXX14_CONSTEXPR wchar_t*
wmemset(wchar_t* s, wchar_t c, std::size_t n) {
return sprout::detail::memset(s, c, n);
}
} // namespace sprout
#endif // #ifndef SPROUT_CWCHAR_WMEMSET_HPP