On 02/29/2016 10:33 AM, Adhemerval Zanella wrote:
> + if ((argc+1) == INT_MAX)
This is clearer as:
if (argc == INT_MAX - 1)
Spaces around binary "+" and/or "-", please, and avoid redundant parens.
To some extent I've reviewed the code so often that I'm burned out as a
reviewer, but it looks OK to me other than these minor glitches.