URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [builtins/] [lib/] [strchr.c] - Rev 816
Compare with Previous | Blame | View Log
extern void abort (void); extern int inside_main; char * strchr (const char *s, int c) { #ifdef __OPTIMIZE__ if (inside_main) abort (); #endif for (;;) { if (*s == c) return (char *) s; if (*s == 0) return 0; s++; } } char * index (const char *s, int c) { return strchr (s, c); }