⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hi_limit.h

📁 华为 HI3510 BOOTLOADER HIBOOT 源码包
💻 H
字号:
/******************************************************************************  Copyright (C), 2001-2011, Hisilicon Tech. Co., Ltd. ******************************************************************************  File Name     : hi_limit.h  Version       : Initial Draft  Author        : Hisilicon multimedia software group  Created       : 2005/5/31  Last Modified :  Description   : azfifo.c header file  Function List :  History       :  1.Date        : 2005/5/31    Author      : T41030    Modification: Created file******************************************************************************//*----------------------------------------------* * external variables                           * *----------------------------------------------*//*----------------------------------------------* * external routine prototypes                  * *----------------------------------------------*//*----------------------------------------------* * internal routine prototypes                  * *----------------------------------------------*//*----------------------------------------------* * project-wide global variables                * *----------------------------------------------*//*----------------------------------------------* * module-wide global variables                 * *----------------------------------------------*//*----------------------------------------------* * constants                                    * *----------------------------------------------*//*----------------------------------------------* * macros                                       * *----------------------------------------------*//*----------------------------------------------* * routines' implementations                    * *----------------------------------------------*/#ifndef HI_LIMIT_H__#define HI_LIMIT_H__#ifdef __cplusplus#if __cplusplusextern "C"{#endif#endif /* __cplusplus */#define INT_MAX         ((int)(~0U>>1))#define MAXINT          INT_MAX#define INT_MIN         (-INT_MAX - 1)#define UINT_MAX        (~0U)#define LONG_MAX        ((long)(~0UL>>1))#define LONG_MIN        (-LONG_MAX - 1)#define ULONG_MAX       (~0UL)#ifdef __cplusplus#if __cplusplus}#endif#endif /* __cplusplus */#endif /* HI_LIMIT_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -