📄 ascii.h
字号:
//
// ASCII.H
//
// Source code from:
//
// Serial Communications: A C++ Developer's Guide, 2nd Edition
// by Mark Nelson, IDG Books, 1999
//
// Please see the book for information on usage.
//
#ifndef _ASCII_DOT_H
#define _ASCII_DOT_H
const int BS = 8;
const int LF = 10;
const int CR = 13;
const int DLE = 16;
const int XON = 17;
const int XOFF = 19;
const int CAN = 24;
const int ESC = 27;
#endif // #ifndef _ASCII_DOT_H
// ******************** END OF ASCII.H *******************
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -