📄 extutil.h
字号:
/* $Revision: 1.6 $ */
#ifndef __EXTUTIL__
#define __EXTUTIL__
/*
* Copyright 1994-2001 The MathWorks, Inc.
*
* File : extutil.h
* Abstract:
* Utilities such as assert.
*/
/*
* Set ASSERTS_ON to 1 turn asserts on, 0 otherwise.
*/
#define ASSERTS_ON (1)
/*------------------------------------------------------------------------------
* Do not modify below this line.
*----------------------------------------------------------------------------*/
#if ASSERTS_ON
#include <assert.h>
#else
#define assert(dum) /* do nothing */
#endif
#endif /* __EXTUTIL__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -