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