📄 updown_util.h
字号:
/* $Revision: 1.1.6.1 $ */
#ifndef __UPDOWN_UTIL__
#define __UPDOWN_UTIL__
/*
* Copyright 1994-2002 The MathWorks, Inc.
*
* File : updown_util.h
* Abstract:
* 'assert' support for external MATLAB files.
*/
/*
* Set ASSERTS_ON to 1 turn asserts on, 0 otherwise.
*/
#define ASSERTS_ON (0)
/*------------------------------------------------------------------------------
* Do not modify below this line.
*----------------------------------------------------------------------------*/
#if ASSERTS_ON
#include <assert.h>
#else
#define assert(dum) /* do nothing */
#endif
#ifdef VERBOSE
# define PRINT_VERBOSE(args) (void)printf args
#elif DEBUG_MSG_LVL > 0
#define PRINT_VERBOSE(args) SCI0_OutString( args )
#else
#define PRINT_VERBOSE(args) /* do nothing */
#endif
#endif /* __UPDOWN_UTIL__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -