kvisc/ka/crt/str/strchr.k

28 lines
444 B
Plaintext
Raw Normal View History

2019-06-03 15:16:11 +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.
;
; char *strchrnul(const char *str, int ch)
;
strchrnul:
2019-06-17 20:59:30 +02:00
mov rcx, STRLEN_MAX
scasb.rep.nz ax0, ax1
mov rax, ax0
2019-06-03 15:16:11 +02:00
ret
;
; char *strchr(const char *str, int ch)
;
strchr:
2019-06-17 20:59:30 +02:00
mov rcx, STRLEN_MAX
scasb.rep.nz ax0, ax1
2019-08-14 09:52:39 +02:00
bnz b[ax0], .r
mov rax, zero
ret
2019-06-17 20:59:30 +02:00
2019-08-14 09:52:39 +02:00
.r:
2019-06-17 20:59:30 +02:00
mov rax, ax0
2019-06-03 15:16:11 +02:00
ret