yeah, I see that's exactly right :-)
I lack a lot of context implied by these source codes. Compacity was
quite important.
This is very interesting, and very useful to test my compiler, as I have
guessed !
Sebastien
Le 19/06/2023 à 12:55, G. Branden Robinson a écrit :
At 2023-06-19T10:48:27+0000, Lars Brinkhoff wrote:
Sebastien F4GRX wrote:
if(ap>ac) return(0*ap++);
This was probably not intended but syntactically correct.
I could well believe it's not a typo, but a "clever" way to write
if(ap>ac) {
ap++;
return 0;
}
/* You were not expected to understand that. */
Regards,
Branden