On Tuesday, August 23, 2011 17:06:54 Jason Hobbs wrote: > - while (*nn == ' ' || *nn == '\t') > + while (isblank(*nn)) > nn++;
at least for these "walking forward" ones, they could be replaced with: nn += strspn(nn, " \t"); -mike
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot