xsputn overloads
Declared in <bslstl_syncbuf.h>
Multiple character insertion.
virtual
streamsize
xsputn(
char_type const* __s,
streamsize __n);
» more...
Write the specified inputString array of the specified count characters to the internal buffer. Return the number of characters successfully written.
std::streamsize
xsputn(
char_type const* inputString,
std::streamsize count) override;
» more...
The number of characters written.
| Name | Description |
|---|---|
| __s | A buffer area. |
| __n | Maximum number of characters to write. |