diff options
author | Martin Mares <mj@ucw.cz> | 2000-02-17 23:37:16 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-02-17 23:37:16 +0000 |
commit | fae0396ea4fd9d2530086eef77b8a11b6640d640 (patch) | |
tree | e20a4d7513feabab3f926c85f7098eaf95349809 /client/client.h | |
parent | 0223d4fff11badc03470b4320fa9dfe28afd1bed (diff) |
Completion works. Unfortunately, we have to access a couple of internal
symbols of libreadline :-(
Diffstat (limited to 'client/client.h')
-rw-r--r-- | client/client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/client.h b/client/client.h index a9c99035..f63c75c3 100644 --- a/client/client.h +++ b/client/client.h @@ -9,8 +9,11 @@ /* client.c */ void cleanup(void); +void input_start_list(void); +void input_stop_list(void); /* commands.c */ void cmd_build_tree(void); void cmd_help(char *cmd, int len); +int cmd_complete(char *cmd, int len, char *buf, int again); |