Update comments for server commands to doxygen style

This commit is contained in:
mmdolze
2009-03-22 09:15:25 +00:00
parent 54151d50e1
commit 92185c9ea0
12 changed files with 132 additions and 141 deletions
+7 -6
View File
@@ -1,11 +1,8 @@
/* \file server/commands/command_list.c
* Defines the dispatcher for handlers dealing with the client commands.
/** \file server/commands/command_list.c
* Implements the dispatcher for handlers dealing with the client commands.
*
* This contains definitions for all the functions which clients can run.
* The functions here are to be called only from parse.c's interpreter.
*
* The client's available function set is defined here, as is the syntax
* for each command. <-- TODO !
*/
/* This file is part of LCDd, the lcdproc server.
@@ -56,7 +53,11 @@ static client_function commands[] = {
{ NULL, NULL},
};
/**
* Looks up a function for a command sent by the client.
* \param cmd Command to look up as string.
* \return Pointer to the implementing function.
*/
CommandFunc get_command_function(char *cmd)
{
int i;