2019-05-31 21:25:56 +02:00
|
|
|
; 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
|
2019-07-10 21:05:26 +02:00
|
|
|
; >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
|
2019-05-31 21:25:56 +02:00
|
|
|
;
|
|
|
|
strcmp:
|
2019-07-24 16:52:26 +02:00
|
|
|
mov rcx, zero
|
2019-07-22 14:41:50 +02:00
|
|
|
.l:
|
2019-07-24 16:52:26 +02:00
|
|
|
movzx rax, b[ax0+rcx]
|
|
|
|
movzx rdx, b[ax1+rcx]
|
2019-07-18 22:49:31 +02:00
|
|
|
|
|
|
|
cmp rax, rdx
|
2019-07-22 14:41:50 +02:00
|
|
|
jmp.nz .r
|
2019-07-18 22:49:31 +02:00
|
|
|
|
|
|
|
; both zero?
|
2019-07-22 13:18:13 +02:00
|
|
|
add rbx, rax, rdx
|
2019-07-22 14:41:50 +02:00
|
|
|
jmp.bxz .r
|
2019-07-18 22:49:31 +02:00
|
|
|
|
2019-07-24 16:52:26 +02:00
|
|
|
add rcx, rcx, 1
|
2019-07-22 14:41:50 +02:00
|
|
|
jmp .l
|
2019-07-18 22:49:31 +02:00
|
|
|
|
2019-07-22 14:41:50 +02:00
|
|
|
.r:
|
2019-07-18 22:49:31 +02:00
|
|
|
sub rax, rax, rdx
|
2019-07-17 22:40:13 +02:00
|
|
|
ret
|
2019-05-31 21:25:56 +02:00
|
|
|
|
|
|
|
;
|
|
|
|
; int strncmp(const char *str1, const char *str2, int maxn)
|
|
|
|
;
|
|
|
|
strncmp:
|
|
|
|
mov rcx, ax2
|
2019-07-22 14:41:50 +02:00
|
|
|
jmp.cxz .r
|
2019-05-31 21:25:56 +02:00
|
|
|
|
2019-07-22 14:41:50 +02:00
|
|
|
.l:
|
2019-07-24 16:52:26 +02:00
|
|
|
movzx rax, b[ax0]
|
|
|
|
movzx rdx, b[ax1]
|
2019-07-18 22:49:31 +02:00
|
|
|
|
|
|
|
cmp rax, rdx
|
2019-07-22 14:41:50 +02:00
|
|
|
jmp.nz .r
|
2019-05-31 21:25:56 +02:00
|
|
|
|
2019-07-18 22:49:31 +02:00
|
|
|
add ax0, ax0, 1
|
|
|
|
add ax1, ax1, 1
|
2019-07-22 14:41:50 +02:00
|
|
|
loop .l
|
2019-06-13 22:20:35 +02:00
|
|
|
|
2019-07-22 14:41:50 +02:00
|
|
|
.r:
|
2019-07-18 22:49:31 +02:00
|
|
|
sub rax, rax, rdx
|
2019-05-31 21:25:56 +02:00
|
|
|
ret
|
|
|
|
|