vote up 4 vote down star

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?

flag
please clarify if you are using C90 as an example C standard, or you're specifically interested in whether bool is described by that spec. – Anacrolix Oct 29 at 11:59
It is an example. – asussex Nov 25 at 10:56

10 Answers

vote up 25 vote down check

bool exists in the current ANSI C - C99, but not in C89/90.

In C99 the native type is actually called _Bool, while bool is a standard library macro defined in stdbool.h (which expectedly resolves to _Bool). Objects of type _Bool hold either 0 or 1, while true and false are also macros from stdbool.h.

link|flag
8  
although ISO C99 was adopted by ANSI in 2000, you're the first person I've ever heard referring to it as ANSI C – Christoph Oct 22 at 16:32
vote up 9 vote down

No, there is no bool in ISO C90.

Here's a list of keywords in standard C (not C99)

auto
break
case
char
const
continue
default
do
double
else
enum
extern
float
for
goto
if
int
long
register
return
short
signed
static
struct
switch
typedef
union
unsigned
void
volatile
while

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

link|flag
1  
C99 is the current standard. You're referring to a standard that is twenty years old and has been superseded (officially) for ten years. – Jonathan Leffler Oct 24 at 7:58
For practical purposes, does it really matter so long as there is still no decent compiler support? Even gcc didn't have half of C99 features until recently, and MSVC doesn't have most of them, and probably never will... – Pavel Minaev Oct 24 at 8:45
@Jonathan Leffler, the questioner specifically asked about ISO C90. :) In fact, usually when people refer to ANSI C they meaqn C90. I don't use or really plan to use C99 and I think many feel the same way. – BobbyShaftoe Oct 24 at 16:00
vote up 4 vote down

C99 has it in stdbool.h, but in C90 it must be defined as a typedef or enum.

typedef int bool;
#define FALSE 0
#define TRUE (-1)
...
bool f = FALSE;
...
if (f) { ... }

OR

typedef enum { FALSE, TRUE } boolean;
...
boolean b = FALSE;
...
if (b) { ... }

Wikipedia is your friend. :)

link|flag
-1 for #define TRUE (-1) - had enough horrors with that resulting from COM choosing the same approach. – gf Oct 24 at 22:49
Irrelevant. The question is not about implementation, and my response correctly illustrates the concept. Nowhere does it say this is the best approach. – Rob Oct 26 at 15:43
vote up 4 vote down

_Bool is a keyword in C99: it specifies a type, just like int or double.

6.5.2

2 An object declared as type _Bool is large enough to store the values 0 and 1.

link|flag
vote up 4 vote down

C99 added a builtin _Bool data type (see Wikipedia for details), and if you #include <stdbool.h>, it provides bool as a macro to _Bool.

You asked about the Linux kernel in particular. It assumes the presence of _Bool and provides a bool typedef itself in include/linux/types.h.

link|flag
Clearest and most accurate answer so far. – Clifford Oct 22 at 17:36
Not entirely :) bool in C99 is a macro from stdbool.h, not a typedef. I don't really know why. – AndreyT Oct 23 at 7:15
Thanks for the correction. – Josh Kelley Oct 23 at 12:19
As to why, it is to allow it ot be undefined and redefined where its definition might cause a clash with legacy code. – Clifford Oct 23 at 21:41
vote up 1 vote down

We can define bool using typedef:

typedef int bool;
#define FALSE 0
#define TRUE (-1)


The C99 version of C provides the <stdbool.h> header that defines a built-in boolean type

link|flag
vote up 1 vote down

C99 defines bool, true and false in stdbool.h.

link|flag
vote up 1 vote down

stdbool.h was introduced in c99

link|flag
vote up -1 vote down

It's not native to C. Just use int. It is supported by any c compiler.

link|flag
C99 was published a decade ago. – Novelocrat Oct 22 at 16:54
The question was C90, NOT C99 – sindre j Oct 29 at 9:10
vote up -3 vote down

No such thing, probably just a macro for int

link|flag
C99 added this. – Novelocrat Oct 22 at 16:54
Nice with -1's ... the question was C90, not 99 i believe – sindre j Oct 24 at 15:29
EHHH</buzzer>. go back to java or c# – Anacrolix Oct 29 at 6:46
EHHHH yourself, I dare you to find a native bool type in C90 – sindre j Oct 29 at 9:11
well he says C standard eg C90, i assume that includes C99. – Anacrolix Oct 29 at 10:17
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.