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/] [strrchr.c] - Rev 816
Compare with Previous | Blame | View Log
extern void abort (void); extern int inside_main; char * strrchr (const char *s, int c) { __SIZE_TYPE__ i; #ifdef __OPTIMIZE__ if (inside_main) abort (); #endif i = 0; while (s[i] != 0) i++; do if (s[i] == c) return (char *) s + i; while (i-- != 0); return 0; } char * rindex (const char *s, int c) { return strrchr (s, c); }