Re: [squid-users] skipLeadingSpace

2017-04-14 Thread Alex Rousskov
On 04/14/2017 03:30 PM, joseph wrote: > is this correct ?? > > char * > skipLeadingSpace(char *aString) > { > char *result = aString; > > while (xisspace(*aString)) > ++aString; > > return result; > } No, the above code is incorrect. It does nothing [useful]. The bug was int

[squid-users] skipLeadingSpace

2017-04-14 Thread joseph
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 Squ