updown_util.h

来自「RT9S12 target document」· C头文件 代码 · 共 36 行

H
36
字号
/* $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 + =
减小字号Ctrl + -
显示快捷键?