Cleanup and documentation updates:

- Remove shared/str.h where not used.
- Remove shared/debug.h from all files as it has been completely replaced
  by shared/report.h (it will be removed later).
- Add more doxygen comments to shared/* and clients/lcdproc/*.
- Include static functions in doxygen output.
This commit is contained in:
mmdolze
2010-02-02 23:20:29 +00:00
parent e914ee3d72
commit 66023939a1
49 changed files with 929 additions and 590 deletions
+8 -7
View File
@@ -1,6 +1,10 @@
/*
/** \file shared/report.c
* Contains reporting functions.
*/
/*-
* report.c
* This file is part of LCDd, the lcdproc server.
* This file is part of LCDproc.
*
* This file is released under the GNU General Public License. Refer to the
* COPYING file distributed with this package.
@@ -8,14 +12,9 @@
* Copyright (c) 1999, William Ferrell, Scott Scriven
* 2001, Joris Robijn
* 2005, Peter Marschall
*
* Contains reporting functions
*
*/
#include <stdlib.h>
#include "report.h"
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
@@ -25,6 +24,8 @@
# include <windows.h>
#endif
#include "report.h"
static int report_level = RPT_INFO;
static int report_dest = RPT_DEST_STORE;