URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.0/] [libiberty/] [rindex.c] - Rev 107
Go to most recent revision | Compare with Previous | Blame | View Log
/* Stub implementation of (obsolete) rindex(). */ extern char *strrchr (); char * rindex (s, c) char *s; int c; { return strrchr (s, c); }
Go to most recent revision | Compare with Previous | Blame | View Log