| 31 | } |
| 32 | |
| 33 | static int |
| 34 | cmdline_complete_buffer(struct rdline *rdl, const char *buf, |
| 35 | char *dstbuf, unsigned int dstsize, |
| 36 | int *state) |
| 37 | { |
| 38 | struct cmdline *cl = rdl->opaque; |
| 39 | return cmdline_complete(cl, buf, state, dstbuf, dstsize); |
| 40 | } |
| 41 | |
| 42 | int |
| 43 | cmdline_write_char(struct rdline *rdl, char c) |
nothing calls this directly
no test coverage detected