diff options
Diffstat (limited to 'nest/cli.h')
-rw-r--r-- | nest/cli.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -58,6 +58,9 @@ void cli_printf(cli *, int, char *, ...); #define cli_msg(x...) cli_printf(this_cli, x) void cli_set_log_echo(cli *, uint mask, uint size); +static inline void cli_separator(cli *c) +{ if (c->last_reply) cli_printf(c, -c->last_reply, ""); }; + /* Functions provided to sysdep layer */ cli *cli_new(void *); |