strcmp.s

来自「操作系统源代码」· S 代码 · 共 13 行

S
13
字号
!	strcmp()					Author: Kees J. Bot!								27 Jan 1994.sect .text; .sect .rom; .sect .data; .sect .bss! int strcmp(const char *s1, const char *s2)!	Compare two strings.!.sect .text.define _strcmp_strcmp:	mov	cx, #-1		! Unlimited length	jmp	__strncmp	! Common code

⌨️ 快捷键说明

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