about summary refs log tree commit diff stats
path: root/src/command/command.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-01-15 20:34:45 +0000
committerJames Booth <boothj5@gmail.com>2015-01-15 20:34:45 +0000
commit3656c78217c963d13921734c051a52ed070321f4 (patch)
tree4bc2e55ab69e5a469cb31c17fe35453384a9a025 /src/command/command.h
parent5be47cc5a9dc67b5aa206ed9c5a3bc743ab7af06 (diff)
downloadprofani-tty-3656c78217c963d13921734c051a52ed070321f4.tar.gz
Moved process_input to cmd_process_input
Diffstat (limited to 'src/command/command.h')
-rw-r--r--src/command/command.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/command/command.h b/src/command/command.h
index 13cf2d00..d8c1cd09 100644
--- a/src/command/command.h
+++ b/src/command/command.h
@@ -53,9 +53,8 @@ void cmd_autocomplete_remove_form_fields(DataForm *form);
 void cmd_alias_add(char *value);
 void cmd_alias_remove(char *value);
 
-gboolean cmd_execute(const char * const command, const char * const inp);
-gboolean cmd_execute_alias(const char * const inp, gboolean *ran);
-gboolean cmd_execute_default(const char * const inp);
+gboolean cmd_process_input(char *inp);
+void cmd_execute_connect(const char * const account);
 
 gboolean cmd_exists(char *cmd);