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 |
|||||
|
|
C99 added a builtin You asked about the Linux kernel in particular. It assumes the presence of |
||||
|
No, there is no Here's a list of keywords in standard C (not C99):
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 |
|||||||||||||
|
|
C99 has it in stdbool.h, but in C90 it must be defined as a typedef or enum.
Alternatively:
Wikipedia is your friend. :) |
||||
|
|
|
|
|||
|
|
|
false = 0 true = -1 binary NOT 0 = -1 because the binary representation of int -1: is all bits set to 1 |
|||||
|
|
No such thing, probably just a macro for int |
|||||||||||||
|
|
We can define bool using typedef:
The C99 version of C provides the |
|||||
|
boolis described by that spec. – Matt Joiner Oct 29 '09 at 11:59