vote up 1 vote down star
1

I want to find the _Bool definition on my system, so for systems where it's missing I can implement it. I've seen various definitions for it here and on other sites, but wanted to check on the system for the definitive definition.

Slight problem, in that I can't find where _Bool is defined or even stdbool.h

mussys@debmus:~$ find /usr/include/* -name stdbool.h
/usr/include/c++/4.3/tr1/stdbool.h

And grep for _Bool on /usr/include/* and /usr/include/*/* does not find it either.

So where is it?

flag

5 Answers

vote up 1 vote down check

_Bool is a built-in type, so don't expect to find a definition for it in a header file, even a system header file.

Having said that, guessing your system from the paths that you are searching, have you looked in /usr/lib/gcc/*/*/include ?

My "real" stdbool.h lives there. As expected it #defines bool to be _Bool. As _Bool is a type native to the compiler there's no definition for it in the header file.

link|flag
Thanks. No hadn't checked there, but my system is the same yes. – James Morris Nov 1 at 11:15
vote up 0 vote down

other people have well-replied to the question on _Bool location and finding if C99 is declared... however, i am not satisfied with the self-made declaration everyone gave.

why won't you completely define the type ?

typedef enum
{
    false = 0,
    true  = 1,
} bool;
link|flag
I think it's overkill after I decided to google "bool enum c" which sent me to lysator.liu.se/c/c-faq/c-8.html - see bottom of page regarding the danger of #defining true to be 1· – James Morris Nov 1 at 12:53
i do agree with the arguments provided in your link. personally, i define true and false for clarity when assigning to a boolean variable. coming from a strongly-typed background, for me, a bool is not a char nor an int, it is a type by itself, thus the enum definition above. also, i do think that automatic conversion from int to bool is not quite a good idea (and this applies to any automatic conversion). – Adrien Plisson Nov 1 at 13:14
What if the header is included from a C++ source file? Better to not use the keywords "bool", "true", and "false" when defining the type. – Michael Aaron Safyan Nov 2 at 1:50
we are talking about C: C does not define a lot of concepts that we have to define ourself. the problem would arise with any identifier which match a C++ keyword: static_cast, this, ... – Adrien Plisson Nov 5 at 7:21
vote up 1 vote down

_Bool is a predefined type in C99, much like int or double. You will not find the definition for int in any header file either.

What you can do is

  • check the compiler is C99
  • if it is use _Bool
  • otherwise use some other type (int or unsigned char)

For example:

#if defined __STDC__ && defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
/* have a C99 compiler */
typedef _Bool boolean;
#else
/* do not have a C99 compiler */
typedef unsigned char boolean;
#endif
link|flag
I'm using autotools which tells me about _Bool via HAVE__BOOL and HAVE_STD_BOOL_H but this way looks like a fair alternative. – James Morris Nov 1 at 12:30
A shorter version would be "#ifndef _Bool", is there any non-standard way about writing that? I know that it works in gcc. – pbos Nov 1 at 13:48
1  
I did not expect #ifndef _Bool to work, and nor does it with the gcc (4.3.2 debian) I'm using. – James Morris Nov 1 at 14:18
1  
For binary compatibility reasons this might not be as good an idea as it looks. In general, when creating a public C API, it is best to simply use "int" wherever a boolean type is required. – Michael Aaron Safyan Nov 2 at 1:52
@Michael: I mostly use C89 and I tend to use int when I need a boolean. I checked sizeof (_Bool) before posting and, as it is 1 that's why I opted for unsigned char in my answer – pmg Nov 2 at 9:13
vote up 2 vote down

As a note:

The _Bool is defined in C99. If you build your program with:

gcc -std=c99

You can expect it to be there.

link|flag
Thanks, but this is not what I was asking. – James Morris Nov 1 at 11:57
I'd think that no such functionality definable in a c header. All types that exist wrap, and if you'd compare a (unsigned char) bool (= 2) with another bool(=3), they wouldn't match. So true != true, and that'd suck. Also bool b1 == true might also fail. As no datatypes (except \Bool) have this behaviour, you probably can't make one yourself, since it requires compiler backend support, and you cannot overload operators. You could do cmp_bool(bool b, bool b2), but that's probably really not what you wanted. I can't guarantee that I'm right, but I hope that added something atleast. :) – pbos Nov 1 at 12:20
That's "underscore Bool", formatting got fscked up, and backslash underscore didn't help. – pbos Nov 1 at 12:21
1  
I see what you're saying, but why would I set a bool to 2 or 3? See bottom of the page I found while googling "enum bool c" lysator.liu.se/c/c-faq/c-8.html – James Morris Nov 1 at 12:51
This would happen if you wanted to add boolean values (could be used, not required in any way). But if you wanted to typecast an int to a bool this could be an issue. (bool b = (bool)int_value;) instead of (bool b = int_value != 0;) So long as you're aware of the limitations and usage, it's not an issue. :) – pbos Nov 1 at 13:45
show 3 more comments
vote up 0 vote down
$ echo '_Bool a;' | gcc -c -x c -
$ echo $?
0

$ echo 'bool a;' | gcc -x c -c -
<stdin>:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘a’

This demonstrates that _Bool is a built-in type and bool is not, by compiling a single variable declaration with no includes.

link|flag
$ echo '_Bool a;' | gcc -std=c99 -x c -c - ... $ echo $? ... 0 ... I see. – James Morris Nov 1 at 11:21
maybe now it will make sense, i explained a bit. – Anacrolix Nov 2 at 8:01

Your Answer

Get an OpenID
or

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