| 1551 | */ |
| 1552 | |
| 1553 | int HAMLIB_API read_string(hamlib_port_t *p, |
| 1554 | unsigned char *rxbuffer, |
| 1555 | size_t rxmax, |
| 1556 | const char *stopset, |
| 1557 | int stopset_len, |
| 1558 | int flush_flag, |
| 1559 | int expected_len) |
| 1560 | { |
| 1561 | return read_string_generic(p, rxbuffer, rxmax, stopset, stopset_len, flush_flag, |
| 1562 | expected_len, !p->asyncio); |
| 1563 | } |
| 1564 | |
| 1565 | |
| 1566 | /** |
no test coverage detected