mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
/*=============================================================================
|
|
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_CSTRING_STRCAT_HPP
|
|
#define SPROUT_CSTRING_STRCAT_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
namespace sprout {
|
|
namespace detail {
|
|
template<typename OutputNullTerminatedIterator, typename NullTerminatedIterator>
|
|
inline SPROUT_CXX14_CONSTEXPR OutputNullTerminatedIterator
|
|
strcat(OutputNullTerminatedIterator s1, NullTerminatedIterator s2) {
|
|
OutputNullTerminatedIterator result = s1;
|
|
while (*s1++)
|
|
;
|
|
while ((*s1++ = *s2++))
|
|
;
|
|
return result;
|
|
}
|
|
} // namespace detail
|
|
|
|
// 7.21.3.1 The strcat function
|
|
//
|
|
inline SPROUT_CXX14_CONSTEXPR char*
|
|
strcat(char* s1, char const* s2) {
|
|
return sprout::detail::strcat(s1, s2);
|
|
}
|
|
|
|
template<typename Elem>
|
|
inline SPROUT_CXX14_CONSTEXPR Elem*
|
|
strcat(Elem* s1, Elem const* s2) {
|
|
return sprout::detail::strcat(s1, s2);
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_CSTRING_STRCAT_HPP
|