24 lines
509 B
ArmAsm
24 lines
509 B
ArmAsm
/* strncpy() Author: Kees J. Bot */
|
|
/* 1 Jan 1994 */
|
|
|
|
/* char *strncpy(char *s1, const char *s2, size_t n) */
|
|
/* Copy string s2 to s1. */
|
|
/* */
|
|
.text
|
|
.globl _strncpy
|
|
.balign 16
|
|
_strncpy:
|
|
push %ebp
|
|
movl %esp, %ebp
|
|
push %esi
|
|
push %edi
|
|
movl 16(%ebp), %ecx /* Maximum length */
|
|
call __strncpy /* Common code */
|
|
movl %edx, %ecx /* Number of bytes not copied */
|
|
|
|
rep stosb /* strncpy always copies n bytes by null padding */
|
|
movl 8(%ebp), %eax /* Return s1 */
|
|
pop %edi
|
|
pop %esi
|
|
pop %ebp
|
|
ret
|