mirror of
https://gitlab.os-k.eu/os-k-team/kvisc.git
synced 2023-08-25 14:05:46 +02:00
61 lines
1016 B
Plaintext
61 lines
1016 B
Plaintext
; The OS/K Team licenses this file to you under the MIT license.
|
|
; See the LICENSE file in the project root for more information.
|
|
|
|
;
|
|
; int strcmp(const char *str1, const char *str2)
|
|
;
|
|
; Returns:
|
|
; 0 if the contents of both strings are equal
|
|
; >0 if the first character that does not match has a greater value in str1 than in str2
|
|
; <0 if the first character that does not match has a lower value in str1 than in str2
|
|
;
|
|
strcmp:
|
|
mov rcx, STRLEN_MAX
|
|
|
|
.1:
|
|
jmp.cxz .2
|
|
|
|
movzx rax, b[ax0]
|
|
movzx rdx, b[ax1]
|
|
|
|
cmp rax, rdx
|
|
jmp.nz .2
|
|
|
|
; both zero?
|
|
add r11, rax, rdx
|
|
b.z r11, zero, .2
|
|
|
|
add ax0, ax0, 1
|
|
add ax1, ax1, 1
|
|
sub rcx, rcx, 1
|
|
jmp .1
|
|
|
|
.2:
|
|
sub rax, rax, rdx
|
|
ret
|
|
|
|
;
|
|
; int strncmp(const char *str1, const char *str2, int maxn)
|
|
;
|
|
strncmp:
|
|
mov rcx, ax2
|
|
|
|
.1:
|
|
jmp.cxz .2
|
|
|
|
mov rax, b[ax0]
|
|
mov rdx, b[ax1]
|
|
|
|
cmp rax, rdx
|
|
jmp.nz .2
|
|
|
|
add ax0, ax0, 1
|
|
add ax1, ax1, 1
|
|
sub rcx, rcx, 1
|
|
jmp .1
|
|
|
|
.2:
|
|
sub rax, rax, rdx
|
|
ret
|
|
|