clib.h
来自「电力系统中的保护装置全部代码」· C头文件 代码 · 共 72 行
H
72 行
/*************************************************************************/
/* */
/* Copyright (c) 1993-1996 Accelerated Technology, Inc. */
/* */
/* PROPRIETARY RIGHTS of Accelerated Technology are involved in the */
/* subject matter of this material. All manufacturing, reproduction, */
/* use, and sales rights pertaining to this subject matter are governed */
/* by the license agreement. The recipient of this software implicitly */
/* accepts the terms of the license. */
/* */
/*************************************************************************/
/*************************************************************************/
/* */
/* FILE NAME VERSION */
/* */
/* clib.h CLIB/C54X/T 1.0 */
/* */
/* COMPONENT */
/* */
/* Data Types */
/* */
/* DESCRIPTION */
/* */
/* This file contains data types common to all of the */
/* C library functions. */
/* */
/* AUTHOR */
/* */
/* Kevin E. Pontzloff, Accelerated Technology, Inc. */
/* */
/* DEPENDENCIES */
/* */
/* None */
/* */
/* HISTORY */
/* */
/* NAME DATE REMARKS */
/* */
/* K. Pontzloff 02-03-1998 Created initial version 1.0 */
/* */
/*************************************************************************/
/* Check to see if this file has been included already. */
#ifndef CLIB_H
#define CLIB_H
#ifdef __cplusplus
extern "C" { /* C declarations in C++ */
#endif
/* Define data sizes */
#define _CHARBITS 32
#define _INTBITS 32
#define _SHRTBITS 32
#define _LONGBITS 32
#define _DBLBITS 32
#define _FLTBITS 32
#define _LDBLBITS 32
#ifdef __cplusplus
} /* End of C declarations */
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?