| 1308 | */ |
| 1309 | |
| 1310 | int HAMLIB_API read_block_direct(hamlib_port_t *p, unsigned char *rxbuffer, |
| 1311 | size_t count) |
| 1312 | { |
| 1313 | return read_block_generic(p, rxbuffer, count, 1); |
| 1314 | } |
| 1315 | |
| 1316 | static int read_string_generic(hamlib_port_t *p, |
| 1317 | unsigned char *rxbuffer, |
no test coverage detected