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


Ignore:
Timestamp:
06/10/13 10:03:44 (11 years ago)
Author:
cheese
Message:

#1 fix header in debug util

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/cf_debug.h

    r119 r120  
    3131 * 디버그 메시지를 지정된 파일 포인터로 출력
    3232 *
    33  & \param __fp  출력할 파일 포인터
     33 * \param __fp  출력할 파일 포인터
    3434 * \param __fmt 포맷 스트링
    3535 * \param ...   가변 인자
    36  *
    37  * \see CF_Debug_Print
    3836 */
    3937# define CF_DEBUG_PRINT(__fp,__fmt,...) \
     
    4341 * 바이너리 데이터를 디버그 메시지와 함께 지정된 파일 포인터로 출력
    4442 *
    45  & \param __fp  출력할 파일 포인터
     43 * \param __fp  출력할 파일 포인터
    4644 * \param __bin 바이너리 데이터
    4745 * \param __len 바이너리 길이
    4846 * \param __fmt 포맷 스트링
    4947 * \param ...   가변 인자
    50  *
    51  * \see CF_Debug_PrintBin
    5248 */
    5349# define CF_DEBUG_PRINT_BIN(__fp,__bin,__len,__fmt,...) \
    5450    CF_Debug_PrintBin (__fp,__FILE__,__func__,__LINE__,__bin,__len,__fmt,##__VA_ARGS__)
    5551
    56 /**
    57  * 디버깅 모듈 초기화
    58  *
    59  * \see CF_Debug_Initialize
    60  */
     52/** 디버깅 모듈 초기화 */
    6153# define CF_DEBUG_INITIALIZE    \
    6254    CF_Debug_Initialize ()
    6355
    64 /**
    65  * 디버깅 모듈 해제
    66  *
    67  * \see CF_Debug_Finalize
    68  */
     56/** 디버깅 모듈 해제 */
    6957# define CF_DEBUG_FINALIZE  \
    7058    CF_Debug_Finalize ()
    7159
    72 /**
    73  * 함수에 진입
    74  *
    75  * \see CF_Debug_EnterFunction
    76  */
     60/** 함수에 진입 */
    7761# define CF_DEBUG_BEGIN_FUNCTION    \
    7862    CF_Debug_EnterFunction (__FILE__,__func__,__LINE__)
    7963
    80 /**
    81  * 함수에서 리턴
    82  *
    83  * \see CF_Debug_LeaveFunction
    84  */
     64/** 함수에서 리턴 */
    8565# define CF_DEBUG_END_FUNCTION  \
    8666    CF_Debug_LeaveFunction ()
    8767
    88 /**
    89  * 콜스택 을 지정된 파일 포인터로 출력
    90  *
    91  * \see CF_Debug_PrintCallStack
    92  */
     68/** 콜스택 을 지정된 파일 포인터로 출력 */
    9369# define CF_DEBUG_PRINT_CALLSTACK(__fp) \
    9470    CF_Debug_PrintCallStack (__fp)
Note: See TracChangeset for help on using the changeset viewer.