On 2/25/12, Denis 'GNUtoo' Carikli GNUtoo@no-log.org wrote: snip
- if (buflen >= 31)
elsecnt = 31;
return buflen;
cnt = buflen;
I could simplify this if/else by:
cnt = buflen & 0x1F;
but I think it will not be readable for other people.
Best Regards,
Alan