From e4b4a8b5245b97f175d2c39edc4b226d136d9e82 Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Sun, 18 Oct 2015 07:07:30 +0000 Subject: [PATCH] More comments. FossilOrigin-Name: fe378f99371f5f194c64aabdb2fbdcc4c15a109c722a1ac64ff0ac5d8f582cba --- src/capwap/dbg.c | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/src/capwap/dbg.c b/src/capwap/dbg.c index aa89588f..626c91bb 100644 --- a/src/capwap/dbg.c +++ b/src/capwap/dbg.c @@ -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) /**@}*/ + +/**@}*/ +