summaryrefslogtreecommitdiff
path: root/client/client.h
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2013-04-23 02:54:13 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2013-04-23 02:54:13 +0200
commit32622d0ea366406f3afa14bb9edb4855d6979786 (patch)
tree9ccfb9c0e165658e54f82da1d9de2c9bb3348f5a /client/client.h
parentefd6d12b975441c7e1875a59dd9e0f3db7e958cb (diff)
parenta5e9f3d26f887deb451a3ea086e52266c117aa0a (diff)
Merge branch 'birdcl'
Diffstat (limited to 'client/client.h')
-rw-r--r--client/client.h20
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);