xref: /minix3/lib/libc/arch/i386/string/rindex.S (revision 68db8ed0b9600e11489ca631e7ea24a6f5adb15f)
1/*	rindex()					Author: Kees J. Bot */
2/*								2 Jan 1994 */
3
4/* char *rindex(const char *s, int c) */
5/*	Look for the last occurrence a character in a string.  Has suffered */
6/*	from a hostile takeover by strrchr(). */
7/* */
8.text
9.globl	_rindex
10.balign	16
11_rindex:
12	jmp	_strrchr
13