Minix1.5/lib/other/rindex.c

Compare this file to the similar file:
Show the results in this format:

#include <lib.h>
/* rindex - find last occurrence of a character in a string  */

#include <string.h>

char *rindex(s, charwanted)	/* found char, or NULL if none */
_CONST char *s;
char charwanted;
{
  return(strrchr(s, charwanted));
}