_Bool is the defined before C99. bool has been defined in C99. bool is an alias for _Bool if you include stdbool.h.
Underscores in C are significant, though not officially.
2024-03-01 17:52:58
_Bool is the defined before C99. bool has been defined in C99. bool is an alias for _Bool if you include stdbool.h.
Underscores in C are significant, though not officially.