extutil.h
来自「simulink real-time workshop for dragon12」· C头文件 代码 · 共 28 行
H
28 行
/* $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 + =
减小字号Ctrl + -
显示快捷键?