source: trunk/minix/lib/i386/string/rindex.s@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 316 bytes
Line 
1! rindex() Author: Kees J. Bot
2! 2 Jan 1994
3.sect .text; .sect .rom; .sect .data; .sect .bss
4
5! char *rindex(const char *s, int c)
6! Look for the last occurrence a character in a string. Has suffered
7! from a hostile takeover by strrchr().
8!
9.sect .text
10.define _rindex
11 .align 16
12_rindex:
13 jmp _strrchr
Note: See TracBrowser for help on using the repository browser.