mirror of
https://github.com/cahirwpz/amigaos-gcc-2.95.3.git
synced 2025-12-08 14:58:59 +00:00
12 lines
143 B
C
12 lines
143 B
C
/* Stub implementation of (obsolete) index(). */
|
|
|
|
extern char * strchr();
|
|
|
|
char *
|
|
index (s, c)
|
|
char *s;
|
|
int c;
|
|
{
|
|
return strchr (s, c);
|
|
}
|