| 36 | } |
| 37 | |
| 38 | int Gets(BIO* bio, char* buf, int size) noexcept { |
| 39 | return ExceptionBoundary(bio, &TAbstractIO::Gets, -1, buf, size); |
| 40 | } |
| 41 | |
| 42 | long Ctrl(BIO* bio, int cmd, long larg, void* parg) noexcept { |
| 43 | return ExceptionBoundary(bio, &TAbstractIO::Ctrl, -1, cmd, larg, parg); |
nothing calls this directly
no test coverage detected