is this correct ??
char *
skipLeadingSpace(char *aString)
{
char *result = aString;
while (xisspace(*aString))
++aString;
return result;
}
--
View this message in context: http://squid-web-proxy-cache.1019090.n4.nabble.com/skipLeadingSpace-tp4682110.html
Sent from the Squid - Users mailing list archive at Nabble.com.