📄 ncl.h
字号:
/*************************************************************************** Copyright Mentor Graphics Corporation 2002 * All Rights Reserved. * * THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS * THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS * SUBJECT TO LICENSE TERMS. **************************************************************************//*************************************************************************** FILENAME VERSION** ncl.h Nucleus Common Library 1.1** DESCRIPTION** This file contains data types common to all of the C library * functions.** DATA STRUCTURES** none** DEPENDENCIES** none**************************************************************************/#ifndef NCL_H#define NCL_H#ifdef __cplusplusextern "C" { /* C declarations in C++ */#endif /* __cplusplus */#define NU_NCL_SOURCE_FILE/* Define data sizes */#define _CHARBITS 8 #define _INTBITS 32 /************************************************************************** The ANSI standard strtok function is NOT reentrant. MGC has created* a reentrant version, but it is used differently. When NU_NO_ANSI is* set, the reentrant version MGC composed is archived in the library and* the ANSI non-reentrant version is not archived. *************************************************************************/#ifndef NU_NO_ANSI#define NU_NO_ANSI#endif /* NU_NO_ANSI */#undef NU_NCL_SOURCE_FILE#ifdef __cplusplus} /* End of C declarations */#endif /* __cplusplus */#endif /* NCL_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -