defines.h
来自「自己动手写嵌入式操作系统源码」· C头文件 代码 · 共 31 行
H
31 行
//***********************************************************************/
// Author : Garry
// Original Date : Sep,02 2005
// Module Name : DEFINES.H
// Module Funciton :
// This file contains pre-definitions of network module.
//
// Last modified Author :
// Last modified Date :
// Last modified Content :
// 1.
// 2.
// Lines number :
//***********************************************************************/
#ifndef __DEFINES_H__
#define __DEFINES_H__
#define LITTLE_ENDIAN //For INTEL platform,little endian is used to organize
//data.
//
//Alias for common types.
//
#define u32_t __U32
#define u16_t __U16
#define u8_t __U8
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?