typedef.h
来自「文件fat系统的实现在内存中的一种模拟方式」· C头文件 代码 · 共 32 行
H
32 行
/********************************************************************
created: 2006/12/15
created: 15:12:2006 20:26
filename: F:\课程资料\操作系统\程序\myFilesystem\typedef.h
file path: F:\课程资料\操作系统\程序\myFilesystem
file base: typedef
file ext: h
author: youngyt
purpose: 数据类型重定义
*********************************************************************/
#ifndef _TYPEDEF
#define _TYPEDEF
typedef unsigned short u_short;
typedef unsigned short* pu_short;
typedef unsigned char u_char;
typedef unsigned char* pu_char;
typedef unsigned int u_int;
typedef unsigned int* pu_int;
typedef char* pchar;
typedef int* pint;
typedef short* pshort;
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?