?? type.h
字號(hào):
/*****************************************************************/
/* Copyright (c) Texas Instruments, Incorporated 2000 */
/*****************************************************************/
/* File : type.h
Description : Generic types. This interface is reentrant.
Group : System.
Targets : Generic.
Conditions : None.
Author : Kwame Kyiamah
Restrictions : None.
Date : 2.8.99 Created.
*/
#if !defined( TYPE__H )
#define TYPE__H
typedef enum /* boolean */
{
False = 0x0000, /* false */
True = 0x0001 /* true */
} bool;
typedef float f32;
typedef long s32;
typedef int s16;
typedef unsigned char u8;
typedef unsigned int u16;
typedef unsigned long u32;
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -