strcpy.s

来自「一个2.4.21版本的嵌入式linux内核」· S 代码 · 共 24 行

S
24
字号
/* * arch/alpha/lib/strcpy.S * Contributed by Richard Henderson (rth@tamu.edu) * * Copy a null-terminated string from SRC to DST.  Return a pointer * to the null-terminator in the source. */	.text	.align 3	.globl strcpy	.ent strcpystrcpy:	.frame $30, 0, $26	.prologue 0	mov	$16, $0		# set up return value	mov	$26, $23	# set up return address	unop	br	__stxcpy	# do the copy	.end strcpy

⌨️ 快捷键说明

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