⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strrchr.s

📁 minix 2.0操作系统源代码
💻 S
字号:
!	strrchr()					Author: Kees J. Bot
!								27 Jan 1994
.sect .text; .sect .rom; .sect .data; .sect .bss

! char *strrchr(const char *s, int c)
!	Look for the last occurrence a character in a string.
!
.sect .text
.define _strrchr
_strrchr:
	push	bp
	mov	bp, sp
	push	di
	mov	di, 4(bp)	! di = string
	mov	cx, #-1
	xorb	al, al
	cld
  repne	scasb			! Look for the end of the string
	not	cx		! -1 - cx = Length of the string + null
	dec	di		! Put di back on the zero byte
	movb	al, 6(bp)	! The character to look for
	std			! Downwards search
  repne	scasb
	cld			! Direction bit back to default
	jne	failure
	lea	ax, 1(di)	! Found it
	pop	di
	pop	bp
	ret
failure:xor	ax, ax		! Not there
	pop	di
	pop	bp
	ret

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -