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


Ignore:
Timestamp:
04/10/13 17:32:58 (11 years ago)
Author:
cheese
Message:

#1 arrange test code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/cf_debug.h

    r63 r64  
    3737 * @see CF_Debug_Print
    3838 */
    39 # define CF_DEBUG_PRINT(__fp,__fmt,...)                             \
     39# define CF_DEBUG_PRINT(__fp,__fmt,...) \
    4040    CF_Debug_Print (__fp,__FILE__,__func__,__LINE__,__fmt,##__VA_ARGS__)
    4141
     
    5151 * @see CF_Debug_PrintBin
    5252 */
    53 # define CF_DEBUG_PRINT_BIN(__fp,__bin,__len,__fmt,...)             \
     53# define CF_DEBUG_PRINT_BIN(__fp,__bin,__len,__fmt,...) \
    5454    CF_Debug_PrintBin (__fp,__FILE__,__func__,__LINE__,__bin,__len,__fmt,##__VA_ARGS__)
    5555
     
    5959 * @see CF_Debug_Initialize
    6060 */
    61 # define CF_DEBUG_INITIALIZE                                        \
     61# define CF_DEBUG_INITIALIZE    \
    6262    CF_Debug_Initialize ()
    6363
     
    6767 * @see CF_Debug_Finalize
    6868 */
    69 # define CF_DEBUG_FINALIZE                                          \
     69# define CF_DEBUG_FINALIZE  \
    7070    CF_Debug_Finalize ()
    7171
     
    7575 * @see CF_Debug_EnterFunction
    7676 */
    77 # define CF_DEBUG_BEGIN_FUNCTION                                    \
     77# define CF_DEBUG_BEGIN_FUNCTION    \
    7878    CF_Debug_EnterFunction (__FILE__,__func__,__LINE__)
    7979
     
    8383 * @see CF_Debug_LeaveFunction
    8484 */
    85 # define CF_DEBUG_END_FUNCTION                                      \
     85# define CF_DEBUG_END_FUNCTION  \
    8686    CF_Debug_LeaveFunction ()
    8787
     
    9191 * @see CF_Debug_PrintCallStack
    9292 */
    93 # define CF_DEBUG_PRINT_CALLSTACK(__fp)                             \
     93# define CF_DEBUG_PRINT_CALLSTACK(__fp) \
    9494    CF_Debug_PrintCallStack (__fp)
    9595
Note: See TracChangeset for help on using the changeset viewer.