libstdc++
GNU C++ library
Loading...
Searching...
No Matches

◆ append() [4/14]

template<typename _CharT, typename _Traits, typename _Alloc>
basic_string & std::basic_string< _CharT, _Traits, _Alloc >::append ( const _CharT * __s)
inline

Append a C string.

Parameters
__sThe C string to append.
Returns
Reference to this string.

Definition at line 1342 of file cow_string.h.

1343 {
1345 return this->append(__s, traits_type::length(__s));
1346 }
#define __glibcxx_requires_string(_String)
Definition debug.h:81
constexpr basic_string & append(const basic_string &__str)
Append a string to this string.
Managing sequences of characters and character-like objects.