I've noticed that the Linux kernel code uses bool, but I thought that bool was a C++ type. Is bool a standard C extension (e.g., ISO C90) or a GCC extension?
|
|
|
|
|
In C99 the native type is actually called |
||||
|
|
|
No, there is no Here's a list of keywords in standard C (not C99) auto Here's an article discussing some other differences with C as used in the kernel and the standard: http://www.ibm.com/developerworks/linux/library/l-gcc-hacks/index.html |
||||||||
|
|
|
No such thing, probably just a macro for int |
||||||||||
|
|
|
It's not native to C. Just use |
||||
|
|
|
We can define bool using typedef:
The C99 version of C provides the |
||
|
|
|
|
C99 defines bool, true and false in stdbool.h. |
||
|
|
|
|
stdbool.h was introduced in c99 |
||
|
|
|
|
C99 has it in stdbool.h, but in C90 it must be defined as a typedef or enum.
OR
Wikipedia is your friend. :) |
||
|
|
|
||
|
|
|
|
C99 added a builtin You asked about the Linux kernel in particular. It assumes the presence of |
||||||||
|

boolis described by that spec. – Anacrolix Oct 29 at 11:59