📄 scan.c
字号:
/* Cover function to sparclet `scan' instruction. This file is in the public domain. */#ifdef __sparclet__intscan (int a, int b){ int res; __asm__ ("scan %1,%2,%0" : "=r" (res) : "r" (a), "r" (b)); return res;}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -