📄 intlinux.h
字号:
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ +
+ intwin32 - the file has all the win32 interrupt code +
+ ( native system calls are needed to implement +
+ basic I/O functionality ) +
+ +
+ could not include this stuff in win32.c because +
+ we make use of system registers and globals which +
+ are defined later +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#ifndef _INTLINUX_H
#define _INTLINUX_H
#include "common.h"
#ifdef OS_WIN
#include "win32.h"
#else
#include "linux.h"
#endif
void handlefileIO();
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -