command: no CamelCase

Eliminate CamelCase in all public and static functions.
This commit is contained in:
Max Kellermann
2008-10-22 21:40:44 +02:00
parent 69c563b511
commit 51a6ee88f7
4 changed files with 260 additions and 238 deletions

View File

@@ -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);