| 233 | } |
| 234 | |
| 235 | int istream::getch() |
| 236 | { |
| 237 | int ret = acl_vstream_getc(stream_); |
| 238 | if (ret == ACL_VSTREAM_EOF) { |
| 239 | CHECK_ERROR(errno); |
| 240 | } |
| 241 | return ret; |
| 242 | } |
| 243 | |
| 244 | int istream::ugetch(int ch) |
| 245 | { |
nothing calls this directly
no test coverage detected