1993-10-07 03:17:24 +03:00
|
|
|
/*
|
1995-04-29 02:53:59 +04:00
|
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
|
|
* Public domain.
|
1993-10-07 03:17:24 +03:00
|
|
|
*/
|
|
|
|
|
1994-03-12 04:39:55 +03:00
|
|
|
#include <machine/asm.h>
|
|
|
|
|
1993-10-21 04:39:55 +03:00
|
|
|
#if defined(LIBC_SCCS)
|
1995-04-29 02:57:54 +04:00
|
|
|
RCSID("$NetBSD: index.S,v 1.8 1995/04/28 22:58:01 jtc Exp $")
|
1993-10-21 04:39:55 +03:00
|
|
|
#endif
|
1993-10-07 03:17:24 +03:00
|
|
|
|
1993-12-09 01:10:14 +03:00
|
|
|
#ifdef STRCHR
|
|
|
|
ENTRY(strchr)
|
|
|
|
#else
|
1993-10-07 03:17:24 +03:00
|
|
|
ENTRY(index)
|
1993-12-09 01:10:14 +03:00
|
|
|
#endif
|
1993-10-07 03:17:24 +03:00
|
|
|
pushl %ebx
|
|
|
|
movl 8(%esp),%eax
|
|
|
|
movb 12(%esp),%cl
|
|
|
|
.align 2,0x90
|
|
|
|
L1:
|
|
|
|
movb (%eax),%bl
|
|
|
|
cmpb %bl,%cl /* found char??? */
|
|
|
|
je L2
|
|
|
|
incl %eax
|
|
|
|
testb %bl,%bl /* null terminator??? */
|
1994-02-14 23:05:52 +03:00
|
|
|
jnz L1
|
1993-10-07 03:17:24 +03:00
|
|
|
xorl %eax,%eax
|
|
|
|
L2:
|
|
|
|
popl %ebx
|
|
|
|
ret
|