std::strstreambuf::overflow (3) Linux Manual Page
std::strstreambuf::overflow – std::strstreambuf::overflow Synopsis protected: virtual int_type overflow(int_type c = EOF); Appends the character c to the put area of the buffer, reallocating if possible. 1) If c==EOF, does nothing 2) Otherwise, if the put area has a write position available (pptr() < epptr()), stores the character as if by *pptr()++ = c 3) Otherwise,…
