📄 lib2extra-funcs.c
字号:
typedef unsigned int USItype __attribute__ ((mode (SI)));USItype__mulsi3 (USItype a, USItype b){ USItype c = 0; while (a != 0) { if (a & 1) c += b; a >>= 1; b <<= 1; } return c;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -