On 06/05/2012 08:37 AM, Akim Demaille wrote: > + bool use_push_for_pull_flag = cp && *cp && STRNEQ (cp, "0");
A nit: shouldn't that 'STRNEQ (cp, "0")' be 'strtol (cp, 0, 10) != 0'? That would recognize, e.g., "00" as zero. No big deal either way.
On 06/05/2012 08:37 AM, Akim Demaille wrote: > + bool use_push_for_pull_flag = cp && *cp && STRNEQ (cp, "0");
A nit: shouldn't that 'STRNEQ (cp, "0")' be 'strtol (cp, 0, 10) != 0'? That would recognize, e.g., "00" as zero. No big deal either way.