📄 rune.h
字号:
/* * * Rune declarations - for supporting UTF encoding. * */#define RUNELIB 1#ifdef RUNELIBtypedef unsigned short Rune;enum{ UTFmax = 3, /* maximum bytes per rune */ Runesync = 0x80, /* cannot represent part of a utf sequence (<) */ Runeself = 0x80, /* rune and utf sequences are the same (<) */ Runeerror = 0xFFFD, /* decoding error in utf */};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -