Changeset 119 in libcf for trunk/include/cf_debug.h


Ignore:
Timestamp:
06/10/13 09:56:32 (11 years ago)
Author:
cheese
Message:

#1 fix and arrange doxygen configuration file and doxygen comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/cf_debug.h

    r116 r119  
    11/**
    2  * @file    cf_debug.h
    3  * @author  myusgun <myusgun@gmail.com>
     2 * \file    cf_debug.h
     3 * \author  myusgun <myusgun@gmail.com>
    44 *
    5  * @brief 디버그 유틸
     5 * \brief 디버그 유틸
    66 *
    7  * @remarks
     7 * \remarks
    88 * 디버그 함수를 직접 호출하지 않고 정의된 매크로를 사용하면,
    99 * Preprocessor에 _DEBUG가 정의되어 있는 경우에 만
     
    1111 * 디버그 메시지는 stdout 및 stderr 등의 파일 포인터 출력을 지원함
    1212 *
    13  * @example debug.c
     13 * \example debug.c
    1414 */
    1515#ifndef __CF_DEBUG_H__
     
    3131 * 디버그 메시지를 지정된 파일 포인터로 출력
    3232 *
    33  & @param __fp  출력할 파일 포인터
    34  * @param __fmt 포맷 스트링
    35  * @param ...   가변 인자
     33 & \param __fp  출력할 파일 포인터
     34 * \param __fmt 포맷 스트링
     35 * \param ...   가변 인자
    3636 *
    37  * @see CF_Debug_Print
     37 * \see CF_Debug_Print
    3838 */
    3939# define CF_DEBUG_PRINT(__fp,__fmt,...) \
     
    4343 * 바이너리 데이터를 디버그 메시지와 함께 지정된 파일 포인터로 출력
    4444 *
    45  & @param __fp  출력할 파일 포인터
    46  * @param __bin 바이너리 데이터
    47  * @param __len 바이너리 길이
    48  * @param __fmt 포맷 스트링
    49  * @param ...   가변 인자
     45 & \param __fp  출력할 파일 포인터
     46 * \param __bin 바이너리 데이터
     47 * \param __len 바이너리 길이
     48 * \param __fmt 포맷 스트링
     49 * \param ...   가변 인자
    5050 *
    51  * @see CF_Debug_PrintBin
     51 * \see CF_Debug_PrintBin
    5252 */
    5353# define CF_DEBUG_PRINT_BIN(__fp,__bin,__len,__fmt,...) \
     
    5757 * 디버깅 모듈 초기화
    5858 *
    59  * @see CF_Debug_Initialize
     59 * \see CF_Debug_Initialize
    6060 */
    6161# define CF_DEBUG_INITIALIZE    \
     
    6565 * 디버깅 모듈 해제
    6666 *
    67  * @see CF_Debug_Finalize
     67 * \see CF_Debug_Finalize
    6868 */
    6969# define CF_DEBUG_FINALIZE  \
     
    7373 * 함수에 진입
    7474 *
    75  * @see CF_Debug_EnterFunction
     75 * \see CF_Debug_EnterFunction
    7676 */
    7777# define CF_DEBUG_BEGIN_FUNCTION    \
     
    8181 * 함수에서 리턴
    8282 *
    83  * @see CF_Debug_LeaveFunction
     83 * \see CF_Debug_LeaveFunction
    8484 */
    8585# define CF_DEBUG_END_FUNCTION  \
     
    8989 * 콜스택 을 지정된 파일 포인터로 출력
    9090 *
    91  * @see CF_Debug_PrintCallStack
     91 * \see CF_Debug_PrintCallStack
    9292 */
    9393# define CF_DEBUG_PRINT_CALLSTACK(__fp) \
Note: See TracChangeset for help on using the changeset viewer.