common.h
来自「Atmel 公司提供的一个参考代码」· C头文件 代码 · 共 34 行
H
34 行
/**
**************************************************************************
* @name D閒inition des types
* D閒inition des types
*************************************************************************/
#ifndef COMMON_H
#define COMMON_H
typedef unsigned char boolean;
typedef unsigned char uword8;
typedef unsigned short int uword16;
typedef unsigned long int uword32;
typedef unsigned char u8;
typedef unsigned short int u16;
typedef unsigned long int u32;
typedef signed char s8;
typedef signed short int s16;
typedef signed long int s32;
typedef signed char sword8;
typedef signed short int sword16;
typedef signed long int sword32;
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?