xref: /minix3/lib/libc/arch/i386/string/index.S (revision 58a2b0008e28f606a7f7f5faaeaba4faac57a1ea)
1/*	index()						Author: Kees J. Bot */
2/*								2 Jan 1994 */
3
4/* char *index(const char *s, int c) */
5/*	Look for a character in a string.  Has suffered from a hostile */
6/*	takeover by strchr(). */
7/* */
8#include <machine/asm.h>
9
10ENTRY(index)
11	jmp	_C_LABEL(strchr)
12