More comments.

FossilOrigin-Name: fe378f99371f5f194c64aabdb2fbdcc4c15a109c722a1ac64ff0ac5d8f582cba
This commit is contained in:
7u83@mail.ru 2015-10-18 07:07:30 +00:00
parent b469de74be
commit e4b4a8b524
1 changed files with 20 additions and 3 deletions

View File

@ -16,12 +16,15 @@
*/
/**
* @file Debugging Functions
* @brief Various debug functions.
* @defgroup DebugFunctions Debug Functions
* @{
*/
*/
#include "capwap.h"
#include "dbg.h"
@ -34,6 +37,17 @@
#include "capwap_cisco.h"
#include "lwapp_cisco.h"
/**
*@addtogroup DBG
*@{
*/
/*
* @defgroup DebugFunctions Debug Functions
* @{
*/
void (*cw_dbg_cb) (int level, const char *format, ...) = CW_LOG_DEFAULT_LOG;
void (*cw_dbg_vcb) (int level, const char *fromat, va_list args) = CW_LOG_DEFAULT_VLOG;
@ -600,3 +614,6 @@ void dbg_istore_dmp(mbag_t s)
/**@}*/
/**@}*/