On Fri, 28 Nov 2025 at 02:03, hao a <[email protected]> wrote:

> -typedef unsigned char bool;
> +     typedef unsigned char bool;
>

May I suggest instead:

-typedef unsigned char bool;
> +    #include <stdint.h>
> +    typedef uint_fast8_t bool;


(This allows the compiler to choose a different representation if it would
be faster.)

-Martin

Reply via email to