blob: 9a45af3c8e57816735a62fb0044d6940dbbf1dd3 [file] [log] [blame]
extern void abort (void);
extern int inside_main;
__attribute__ ((__noinline__))
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;
}
__attribute__ ((__noinline__))
char *
rindex (const char *s, int c)
{
return strrchr (s, c);
}