Update comments for server commands to doxygen style
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user