debug.c

来自「[随书类]Dos6.0源代码」· C语言 代码 · 共 28 行

C
28
字号
/*** 
*debug.c - utility routines for internal debugging of the interpreter
*
*	Copyright <C> 1986, Microsoft Corporation
*
*Purpose:
*	This module provides general purpose utilities for writing internal
*	debugging and other non-release code for the interpreter.
*
*******************************************************************************/
#include "version.h"

#if !CONTEXT_H
#include "context.h"
#endif

#if !HEAP_H
#include "heap.h"
#endif

#if !TXTMGR_H
#include "txtmgr.h"
#endif

#if !VARIABLE_H
#include "variable.h"
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?