Write a string to the connection */
| 2285 | |
| 2286 | /* Write a string to the connection */ |
| 2287 | void write_sbuf(int f, const char *buf) |
| 2288 | { |
| 2289 | write_buf(f, buf, strlen(buf)); |
| 2290 | } |
| 2291 | |
| 2292 | void write_byte(int f, uchar c) |
| 2293 | { |
no test coverage detected