- Adapted indenation to new agreed upon system

- Added support for second generation scriptcontext based counter
This commit is contained in:
koennecke
2009-02-13 09:00:03 +00:00
parent a3dcad2bfa
commit 91d4af0541
405 changed files with 88101 additions and 88173 deletions

40
Dbg.h
View File

@ -14,13 +14,11 @@ would appreciate credit if this program or parts of it are used.
#include "tcl.h"
typedef int (Dbg_InterProc) _ANSI_ARGS_((Tcl_Interp *interp));
typedef int (Dbg_IgnoreFuncsProc) _ANSI_ARGS_((
Tcl_Interp *interp,
char *funcname));
typedef void (Dbg_OutputProc) _ANSI_ARGS_((
Tcl_Interp *interp,
char *output));
typedef int (Dbg_InterProc) _ANSI_ARGS_((Tcl_Interp * interp));
typedef int (Dbg_IgnoreFuncsProc) _ANSI_ARGS_((Tcl_Interp * interp,
char *funcname));
typedef void (Dbg_OutputProc) _ANSI_ARGS_((Tcl_Interp * interp,
char *output));
EXTERN char *Dbg_VarName;
EXTERN char *Dbg_DefaultCmdName;
@ -28,19 +26,15 @@ EXTERN char *Dbg_DefaultCmdName;
/* trivial interface, creates a "debug" command in your interp */
EXTERN int Dbg_Init _ANSI_ARGS_((Tcl_Interp *));
EXTERN void Dbg_On _ANSI_ARGS_((Tcl_Interp *interp,
int immediate));
EXTERN void Dbg_Off _ANSI_ARGS_((Tcl_Interp *interp));
EXTERN char **Dbg_ArgcArgv _ANSI_ARGS_((int argc,char *argv[],
int copy));
EXTERN int Dbg_Active _ANSI_ARGS_((Tcl_Interp *interp));
EXTERN Dbg_InterProc *Dbg_Interactor _ANSI_ARGS_((
Tcl_Interp *interp,
Dbg_InterProc *interactor));
EXTERN Dbg_IgnoreFuncsProc *Dbg_IgnoreFuncs _ANSI_ARGS_((
Tcl_Interp *interp,
Dbg_IgnoreFuncsProc *));
EXTERN Dbg_OutputProc *Dbg_Output _ANSI_ARGS_((
Tcl_Interp *interp,
Dbg_OutputProc *));
#endif /* _NIST_DBG */
EXTERN void Dbg_On _ANSI_ARGS_((Tcl_Interp * interp, int immediate));
EXTERN void Dbg_Off _ANSI_ARGS_((Tcl_Interp * interp));
EXTERN char **Dbg_ArgcArgv _ANSI_ARGS_((int argc, char *argv[], int copy));
EXTERN int Dbg_Active _ANSI_ARGS_((Tcl_Interp * interp));
EXTERN Dbg_InterProc *Dbg_Interactor _ANSI_ARGS_((Tcl_Interp * interp,
Dbg_InterProc *
interactor));
EXTERN Dbg_IgnoreFuncsProc *Dbg_IgnoreFuncs
_ANSI_ARGS_((Tcl_Interp * interp, Dbg_IgnoreFuncsProc *));
EXTERN Dbg_OutputProc *Dbg_Output
_ANSI_ARGS_((Tcl_Interp * interp, Dbg_OutputProc *));
#endif /* _NIST_DBG */