ftp.nice.ch/pub/next/developer/nextsources/libg++.s.tar.gz#/libg++/libiberty/rindex.c

This is rindex.c in view mode; [Download] [Up]

/* Stub implementation of (obsolete) rindex(). */

extern char *strrchr ();

char *
rindex (s, c)
  char *s;
  int c;
{
  return strrchr (s, c);
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.