windows-nt/Source/XPSP1/NT/ds/security/tools/keytab2/opt/debug.c
2020-09-26 16:20:57 +08:00

36 lines
482 B
C

/*++
DEBUG.C
interface to my regular debugging library.
Created, 9/13/1997 by DavidCHR
--*/
#ifdef DEBUG_OPTIONS
#include ".\private.h"
VOID
OptionDebugPrint( PCHAR fmt, ... ){
va_list v;
va_start( v, fmt );
vdebug( OPTION_DEBUGGING_LEVEL, fmt, v );
}
VOID
OptionHelpDebugPrint( PCHAR fmt, ... ){
va_list v;
va_start( v, fmt );
vdebug( OPTION_HELP_DEBUGGING_LEVEL, fmt, v );
}
#endif //don't compile it in if the user doesn't specify.