| 295 | } |
| 296 | |
| 297 | bool istream::gets_peek(string* buf, bool nonl /* = true */, |
| 298 | bool clear /* = false */, int max /* = 0 */) |
| 299 | { |
| 300 | acl_assert(buf); |
| 301 | return gets_peek(*buf, nonl, clear, max); |
| 302 | } |
| 303 | |
| 304 | bool istream::read_peek(string& buf, bool clear /* = false */) |
| 305 | { |