index.s
来自「Minux源码 关与操作系统学习的相当好的材料」· S 代码 · 共 14 行
S
14 行
! index() Author: Kees J. Bot
! 2 Jan 1994
.sect .text; .sect .rom; .sect .data; .sect .bss
! char *index(const char *s, int c)
! Look for a character in a string. Has suffered from a hostile
! takeover by strchr().
!
.sect .text
.define _index
.align 16
_index:
jmp _strchr
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?