1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
kvisc/ka/crt/str/strcmp.k

38 lines
789 B
Plaintext
Raw Normal View History

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-17 22:40:13 +02:00
mov rcx, STRLEN_MAX
cmpzsb.rep.z ax0, ax1
mov rax, b[ax0-1]
mov rcx, b[ax1-1]
sub rax, rax, rcx
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-17 22:25:50 +02:00
mov.cxz rax, zero
2019-06-13 22:20:35 +02:00
ret.cxz
2019-05-31 21:25:56 +02:00
2019-07-10 21:05:26 +02:00
cmpzsb.rep.z ax0, ax1
2019-05-31 21:25:56 +02:00
2019-07-10 21:05:26 +02:00
mov rax, b[ax0-1]
2019-07-17 22:25:50 +02:00
mov rcx, b[ax1-1]
sub rax, rax, rcx
2019-06-13 22:20:35 +02:00
2019-05-31 21:25:56 +02:00
ret