| 32 | } |
| 33 | |
| 34 | int Puts(BIO* bio, const char* buf) noexcept { |
| 35 | return ExceptionBoundary(bio, &TAbstractIO::Puts, -1, buf); |
| 36 | } |
| 37 | |
| 38 | int Gets(BIO* bio, char* buf, int size) noexcept { |
| 39 | return ExceptionBoundary(bio, &TAbstractIO::Gets, -1, buf, size); |
nothing calls this directly
no test coverage detected