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.