5 .type _strncpy,@function
7 #ifdef __RX_DISALLOW_STRING_INSNS__
11 mov r1, r4 ; Preserve R1 for the return value.
13 2: mov.b [r2+], r5 ; Copy bytes until...
16 beq 3f ; ... our count reaches zero
18 bne 2b ; ... or we have written a NUL byte
20 4: mov.b r5, [r4+] ; Continue to write further NUL bytes
22 bne 4b ; until the count reaches zero.
27 mov r1, r4 ; Save a copy of the dest pointer.
28 mov r3, r5 ; Save a copy of the byte count
29 smovu ; Copy the bytes
30 cmp #0, r3 ; If we have copied the number of bytes requested
31 beq 1f ; then skip the next bit:
32 add r4, r5, r1 ; Point to the last byte that we are supposed to write.
33 sub r3, r1 ; Subtract the number of bytes left to be written.
34 mov #0, r2 ; Fill the remaining bytes with NULs,
37 mov r4, r1 ; Return the destination pointer
40 .size _strncpy, . - _strncpy