| 92 | } |
| 93 | |
| 94 | int ostream::vformat(const char* fmt, va_list ap) |
| 95 | { |
| 96 | int ret = acl_vstream_vfprintf(stream_, fmt, ap); |
| 97 | if (ret == ACL_VSTREAM_EOF) { |
| 98 | eof_ = true; |
| 99 | } |
| 100 | return ret; |
| 101 | } |
| 102 | |
| 103 | int ostream::write(acl_int64 n) |
| 104 | { |
no test coverage detected