diff options
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/command.h b/src/command.h index a1ee6474c..bae804d3f 100644 --- a/src/command.h +++ b/src/command.h @@ -29,14 +29,16 @@ struct client; -int processListOfCommands(struct client *client, - int listOK, struct strnode *list); +void command_init(void); -int processCommand(struct client *client, char *commandString); +void command_finish(void); -void initCommands(void); +int +command_process_list(struct client *client, + int list_ok, struct strnode *list); -void finishCommands(void); +int +command_process(struct client *client, char *commandString); void command_success(struct client *client); |