diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2013-04-23 02:54:13 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2013-04-23 02:54:13 +0200 |
commit | 32622d0ea366406f3afa14bb9edb4855d6979786 (patch) | |
tree | 9ccfb9c0e165658e54f82da1d9de2c9bb3348f5a /client/client.h | |
parent | efd6d12b975441c7e1875a59dd9e0f3db7e958cb (diff) | |
parent | a5e9f3d26f887deb451a3ea086e52266c117aa0a (diff) |
Merge branch 'birdcl'
Diffstat (limited to 'client/client.h')
-rw-r--r-- | client/client.h | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/client/client.h b/client/client.h index 64de97ec..b194a772 100644 --- a/client/client.h +++ b/client/client.h @@ -6,15 +6,31 @@ * Can be freely distributed and used under the terms of the GNU GPL. */ -/* client.c */ -void cleanup(void); +extern int init, busy, interactive; +extern int term_lns, term_cls; + +/* birdc.c / birdcl.c */ + void input_start_list(void); void input_stop_list(void); +void input_init(void); +void input_notify(int prompt); +void input_read(void); + +void more_begin(void); +void more_end(void); + +void cleanup(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); char *cmd_expand(char *cmd); + +/* client.c */ + +void submit_command(char *cmd_raw); |