aboutsummaryrefslogtreecommitdiff
path: root/src/command.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-22 21:40:44 +0200
committerMax Kellermann <max@duempel.org>2008-10-22 21:40:44 +0200
commit51a6ee88f716377c20d5b4bfe8e95f1a87142ae2 (patch)
tree2760b8bcf82d443a35bf4409e3df78abb650d4d4 /src/command.h
parent69c563b511cf9ab849242c3b3069efb3769592ea (diff)
command: no CamelCase
Eliminate CamelCase in all public and static functions.
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/command.h b/src/command.h
index a1ee6474..bae804d3 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);