tumbledemerald-legacy/agbcc/libiberty/index.c
2022-05-19 17:14:13 +00:00

12 lines
143 B
C
Executable File

/* Stub implementation of (obsolete) index(). */
extern char * strchr();
char *
index (s, c)
char *s;
int c;
{
return strchr (s, c);
}