Signed-off-by: Xiao Zeng <zengxiao@eswincomputing.com>
@ -41,10 +41,11 @@ strspn (const char *s1,
for (c = s2; *c; c++)
{
if (*s1 == *c)
break;
goto found;
}
if (*c == '\0')
found:
s1++;