std::basic_streambuf::in_avail

From Cppreference

Jump to: navigation, search
std::streamsize in_avail();

Returns the number of characters available in the get area. If a read position is available, effectively calls egptr() - gptr(), otherwise calls std::showmanyc().

Contents

[edit] Parameters

(none)

[edit] Return value

The number of characters available in the get area.

[edit] Example

[edit] See also