Update doxygen doc for lcdexec and lcdvc.

This commit is contained in:
mmdolze
2010-02-03 21:50:57 +00:00
parent 66023939a1
commit b2348d5b53
5 changed files with 44 additions and 12 deletions
+17 -2
View File
@@ -1,3 +1,17 @@
/** \file clients/lcdvc/lcd_link.c
* Functions to build and update the display and to handle server input.
*/
/*-
* This file is part of lcdvc, an LCDproc client.
*
* This file is released under the GNU General Public License. Refer to the
* COPYING file distributed with this package.
*
* Copyright (c) 2002, Joris Robijn
* 2006-2008, Peter Marschall
*/
#include <stdio.h>
#include <unistd.h>
#include <string.h>
@@ -135,14 +149,15 @@ static int read_connect_string(void)
}
static int split(char *str, char delim, char *parts[], int maxparts)
/* Splits a string into parts, to which pointers will be returned in &parts.
/**
* Splits a string into parts, to which pointers will be returned in &parts.
* The return value is the number of parts.
* maxparts is the maximum number of parts returned. If more parts exist
* they are (unsplit) in the last part.
* The parts are split at the character delim.
* No new space will be allocated, the string str will be mutated !
*/
static int split(char *str, char delim, char *parts[], int maxparts)
{
char *p1 = str;
char *p2;
+5 -2
View File
@@ -1,5 +1,8 @@
/*
* lcdvc.c
/** \file clients/lcdvc/lcdvc.c
* Main file for \c lcdvc, the LCDproc virtual console.
*/
/*-
* This file is part of lcdvc, an LCDproc client.
*
* This file is released under the GNU General Public License. Refer to the
+14
View File
@@ -1,3 +1,17 @@
/** \file clients/lcdvc/vc_link.c
* Functions to handle a virtual console.
*/
/*-
* This file is part of lcdvc, an LCDproc client.
*
* This file is released under the GNU General Public License. Refer to the
* COPYING file distributed with this package.
*
* Copyright (c) 2002, Joris Robijn
* 2006-2008, Peter Marschall
*/
#include <stdio.h>
#include <unistd.h>
#include <string.h>