blob: 767c89a63510a1cc2d1d38c9e39a420a90e498b9 [file] [log] [blame]
extern int inside_main;
__SIZE_TYPE__
strcspn (const char *s1, const char *s2)
{
const char *p, *q;
#ifdef __OPTIMIZE__
if (inside_main)
abort();
#endif
for (p = s1; *p; p++)
for (q = s2; *q; q++)
if (*p == *q)
goto found;
found:
return p - s1;
}