Cliff Woolley wrote:
>
> DETERMINE_NEXTSTRING(ct, isquoted);
> - ct++;
> + if (*ct != '\0') {
> + ct++;
> + }
> numargs++;
> SKIP_WHITESPACE(ct);We could do the SKIP inside the loop, since if ct is NULL, we know we're at the end, but I'm +1 !! -- =========================================================================== Jim Jagielski [|] [EMAIL PROTECTED] [|] http://www.jaguNET.com/ "A society that will trade a little liberty for a little order will lose both and deserve neither" - T.Jefferson
