Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  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. #include "asm.h"
  9.  
  10. ENTRY(rindex)
  11.         jmp     _C_LABEL(strrchr)
  12.