Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
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. – Matt Joiner Oct 29 '09 at 11:59
It is an example. – asussex Nov 25 '09 at 10:56

10 Answers

up vote 83 down vote accepted

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.

share|improve this answer
23  
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 '09 at 16:32

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.

share|improve this answer
2  
Clearest and most accurate answer so far. – Clifford Oct 22 '09 at 17:36
2  
Not entirely :) bool in C99 is a macro from stdbool.h, not a typedef. I don't really know why. – AndreyT Oct 23 '09 at 7:15
Thanks for the correction. – Josh Kelley Oct 23 '09 at 12:19
8  
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 '09 at 21:41
Great answer and comments. – Nano HE Jan 28 '11 at 3:32

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

share|improve this answer
5  
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 '09 at 7:58
3  
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 '09 at 8:45
3  
@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 '09 at 16:00

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

typedef int bool;
#define TRUE  1
#define FALSE 0

bool f = FALSE;
if (f) { ... }

Alternatively:

typedef enum { FALSE, TRUE } boolean;

boolean b = FALSE;
if (b) { ... }

Wikipedia is your friend. :)

share|improve this answer

_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.

share|improve this answer

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

share|improve this answer

false = 0

true = -1

binary NOT 0 = -1

because the binary representation of int -1: is all bits set to 1

share|improve this answer
1  
How does this answer "Is bool an native C type?" ?! – Bo Persson Nov 7 '12 at 18:50

No such thing, probably just a macro for int

share|improve this answer
C99 added this. – Novelocrat Oct 22 '09 at 16:54
Nice with -1's ... the question was C90, not 99 i believe – sindre j Oct 24 '09 at 15:29
well he says C standard eg C90, i assume that includes C99. – Matt Joiner Oct 29 '09 at 10:17
2  
He mentiones C90 spesifically, NOT C99, so I assume that what he means. According to wikipedia the only compiler that fully supports C99 is Sun Studio from Sun Microsystems. Now, that's hardly a wide accepted standard is it ? Arguably most modern compilers DO implement parts of the C99 standard, I should probably have mentioned that to avoid stupid comments like yours! What's java or c# to do with this btw? – sindre j Oct 29 '09 at 11:28
standard C extension (e.g., ISO C90) is classifying the kind of C standards he's interested in, not specifically C90 itself. an appropriate answer to this is, yes a C standard such as C90, specifically the C99 standard, does implement a bool type. – Matt Joiner Oct 29 '09 at 12:03

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

share|improve this answer
Why -1 for true? It would work, of course, but lots of Posix people are going to interpret -1 as meaning 'error'... – Jeremy Friesner Aug 23 '12 at 18:19
@JeremyFriesner: honestly I don't recall (this was 3 years ago!). Perhaps I meant to show that any value other than 0 would work :) – Amro Aug 23 '12 at 19:08

stdbool.h was introduced in c99

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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