diff options
author | Max Kellermann <max@duempel.org> | 2008-10-22 21:40:44 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-22 21:40:44 +0200 |
commit | 51a6ee88f716377c20d5b4bfe8e95f1a87142ae2 (patch) | |
tree | 2760b8bcf82d443a35bf4409e3df78abb650d4d4 /src/command.h | |
parent | 69c563b511cf9ab849242c3b3069efb3769592ea (diff) | |
download | mpd-51a6ee88f716377c20d5b4bfe8e95f1a87142ae2.tar.gz mpd-51a6ee88f716377c20d5b4bfe8e95f1a87142ae2.tar.xz mpd-51a6ee88f716377c20d5b4bfe8e95f1a87142ae2.zip |
command: no CamelCase
Eliminate CamelCase in all public and static functions.
Diffstat (limited to '')
-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); |