📄 typedef.h
字号:
/********************************************************************
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -