added gnutls backend and moved backend code into new files
[ircu2.10.12-pk.git] / ircd / querycmds.c
index 30a69c020aa159744cbebe6fadef7042fefca1f1..e83d2372ec6eac38ad6c7b5707dbbdbf65f70d56 100644 (file)
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * $Id$
+ */
+/** @file
+ * @brief Implementation of client counting functions.
+ * @version $Id$
  */
 #include "config.h"
 
 
 #include <string.h>
 
-/* Counters of client/servers etc. */
+/** Counters of clients, servers etc. */
 struct UserStatistics UserStats;
 
+/** Initialize global #UserStats variable. */
 void init_counters(void)
 {
   memset(&UserStats, 0, sizeof(UserStats));