| 33 | int write_packetized_from_buf_no_flush_count(const char *src_in, size_t len, |
| 34 | int fd_out, int *packet_counter); |
| 35 | static inline int write_packetized_from_buf_no_flush(const char *src_in, |
| 36 | size_t len, int fd_out) |
| 37 | { |
| 38 | return write_packetized_from_buf_no_flush_count(src_in, len, fd_out, NULL); |
| 39 | } |
| 40 | |
| 41 | /* |
| 42 | * Stdio versions of packet_write functions. When mixing these with fd |
no test coverage detected