mirror of
https://github.com/pret/agbcc.git
synced 2026-04-25 07:19:40 -05:00
12 lines
147 B
C
Executable File
12 lines
147 B
C
Executable File
/* Stub implementation of (obsolete) rindex(). */
|
|
|
|
extern char *strrchr ();
|
|
|
|
char *
|
|
rindex (s, c)
|
|
char *s;
|
|
int c;
|
|
{
|
|
return strrchr (s, c);
|
|
}
|