about summary refs log tree commit diff stats
path: root/src/command/command.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-23 23:04:00 +0000
committerJames Booth <boothj5@gmail.com>2014-01-23 23:04:00 +0000
commit66631308a5f09645fa8975a19615b6c1127031a4 (patch)
treec298db35aed17a34b57333697bef4a157a008fc7 /src/command/command.h
parente089ffb15ca3918b456e05c6198fc0cd122d08a2 (diff)
downloadprofani-tty-66631308a5f09645fa8975a19615b6c1127031a4.tar.gz
Implemented basic running of alias commands
Diffstat (limited to 'src/command/command.h')
-rw-r--r--src/command/command.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/command/command.h b/src/command/command.h
index f958c0d1..ddf19ff7 100644
--- a/src/command/command.h
+++ b/src/command/command.h
@@ -34,6 +34,7 @@ void cmd_autocomplete(char *input, int *size);
 void cmd_reset_autocomplete(void);
 
 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);
 
 GSList * cmd_get_basic_help(void);