mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
38 lines
452 B
PHP
38 lines
452 B
PHP
|
|
#include "tchar.h"
|
|
#include <asm.inc>
|
|
|
|
PUBLIC _tcsncpy
|
|
.code
|
|
|
|
FUNC _tcsncpy
|
|
FPO 0, 3, 2, 2, 0, FRAME_FPO
|
|
push esi
|
|
push edi
|
|
mov edi, [esp + 12] /* s1 */
|
|
mov esi, [esp + 16] /* s2 */
|
|
mov ecx, [esp + 20] /* n */
|
|
|
|
xor eax, eax
|
|
cld
|
|
|
|
.L1:
|
|
dec ecx
|
|
js .L2
|
|
_tlods
|
|
_tstos
|
|
test _treg(a), _treg(a)
|
|
jnz .L1
|
|
rep _tstos
|
|
|
|
.L2:
|
|
mov eax, [esp + 12]
|
|
|
|
pop edi
|
|
pop esi
|
|
ret
|
|
ENDFUNC
|
|
|
|
END
|
|
/* EOF */
|