ref: ed1d2d62298cb6661c8cf31409f20c16c8c80851
dir: /src/libc/arch/amd64/memchr.s/
.file "memchr.s" .text .globl memchr,_memchr _memchr: memchr: cmpq $0,%rdx je notfound movq %rdx,%rcx movb %sil,%al cld repne scasb je found notfound: xor %eax,%eax ret found: leaq -1(%rdi),%rax ret